diff -r 6c8e5745df03 -r a248d0be1309 src/share/vm/code/codeBlob.cpp --- a/src/share/vm/code/codeBlob.cpp Wed May 16 15:25:51 2018 +0200 +++ b/src/share/vm/code/codeBlob.cpp Mon Aug 19 10:11:31 2019 +0200 @@ -58,7 +58,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))