hotspot/src/share/vm/oops/constantPool.hpp
changeset 35898 ddc274f0052f
parent 35499 b79827ea1b9f
child 37475 0da78fa10d78
--- a/hotspot/src/share/vm/oops/constantPool.hpp	Fri Jan 29 20:57:09 2016 -0500
+++ b/hotspot/src/share/vm/oops/constantPool.hpp	Sat Jan 30 11:02:29 2016 -0500
@@ -723,8 +723,8 @@
   }
 
   // Sizing (in words)
-  static int header_size()             { return sizeof(ConstantPool)/HeapWordSize; }
-  static int size(int length)          { return align_object_size(header_size() + length); }
+  static int header_size()             { return sizeof(ConstantPool)/wordSize; }
+  static int size(int length)          { return align_metadata_size(header_size() + length); }
   int size() const                     { return size(length()); }
 #if INCLUDE_SERVICES
   void collect_statistics(KlassSizeStats *sz) const;