< prev index next >

src/share/vm/compiler/compileBroker.cpp

Print this page

        

@@ -1714,11 +1714,12 @@
 
     TraceTime t1("compilation", &time);
     EventCompilation event;
 
     JVMCIEnv env(task, system_dictionary_modification_counter);
-    jvmci->compile_method(target_handle, osr_bci, &env);
+    methodHandle method(thread, target_handle);
+    jvmci->compile_method(method, osr_bci, &env);
 
     post_compile(thread, task, event, task->code() != NULL, NULL);
   } else
 #endif // INCLUDE_JVMCI
   {
< prev index next >