< prev index next >

src/share/vm/runtime/sharedRuntime.cpp

Print this page

        

*** 2889,2901 **** } // Unlock AdapterHandlerLibrary_lock // Install the generated code. if (nm != NULL) { if (PrintCompilation) { ttyLocker ttyl; ! CompileTask::print(tty, nm, method->is_static() ? "(static)" : ""); } nm->post_compiled_method_load_event(); } } --- 2889,2903 ---- } // Unlock AdapterHandlerLibrary_lock // Install the generated code. if (nm != NULL) { + const char *msg = method->is_static() ? "(static)" : ""; + CompileTask::print_ul(nm, msg); if (PrintCompilation) { ttyLocker ttyl; ! CompileTask::print(tty, nm, msg); } nm->post_compiled_method_load_event(); } }
< prev index next >