hotspot/src/share/vm/oops/methodData.cpp
changeset 46619 a3919f5e8d2b
parent 46542 73dd19b96b5d
child 46625 edefffab74e2
--- a/hotspot/src/share/vm/oops/methodData.cpp	Wed Apr 12 17:53:18 2017 +0200
+++ b/hotspot/src/share/vm/oops/methodData.cpp	Tue Jul 04 15:58:10 2017 +0200
@@ -937,7 +937,7 @@
 // profiling information about a given method.  Size is in words
 int MethodData::compute_allocation_size_in_words(const methodHandle& method) {
   int byte_size = compute_allocation_size_in_bytes(method);
-  int word_size = align_size_up(byte_size, BytesPerWord) / BytesPerWord;
+  int word_size = align_up(byte_size, BytesPerWord) / BytesPerWord;
   return align_metadata_size(word_size);
 }