< prev index next >

src/share/vm/aot/aotCodeHeap.cpp

Print this page
rev 13198 : Consolidated and devirtualize CodeHeap::contains and contains_blob

@@ -256,11 +256,10 @@
 
   // Create table for searching AOTCompiledMethod based on pc.
   _code_to_aot = NEW_C_HEAP_ARRAY(CodeToAMethod, _method_count, mtCode);
   memset(_code_to_aot, 0, _method_count * sizeof(CodeToAMethod));
 
-  _low_boundary = _code_space;
   _memory.set_low_boundary((char *)_code_space);
   _memory.set_high_boundary((char *)_code_space);
   _memory.set_low((char *)_code_space);
   _memory.set_high((char *)_code_space);
 
< prev index next >