hotspot/src/share/vm/code/codeBlob.cpp
changeset 27642 8c9eff693145
parent 27420 04e6f914cce1
child 27880 afb974a04396
--- a/hotspot/src/share/vm/code/codeBlob.cpp	Sat Nov 08 16:00:28 2014 +0300
+++ b/hotspot/src/share/vm/code/codeBlob.cpp	Mon Nov 10 19:04:38 2014 +0300
@@ -43,7 +43,7 @@
 #include "c1/c1_Runtime1.hpp"
 #endif
 
-unsigned int align_code_offset(int offset) {
+unsigned int CodeBlob::align_code_offset(int offset) {
   // align the size to CodeEntryAlignment
   return
     ((offset + (int)CodeHeap::header_size() + (CodeEntryAlignment-1)) & ~(CodeEntryAlignment-1))