diff src/share/vm/runtime/java.cpp @ 2937:2823897b2da2

Fix for NodeWorkList
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Fri, 10 Jun 2011 16:53:34 +0200
parents 1e13559b112d
children 04b9a2566eec
line wrap: on
line diff
--- a/src/share/vm/runtime/java.cpp	Fri Jun 10 15:12:10 2011 +0200
+++ b/src/share/vm/runtime/java.cpp	Fri Jun 10 16:53:34 2011 +0200
@@ -419,9 +419,9 @@
   #define BEFORE_EXIT_DONE    2
   static jint volatile _before_exit_status = BEFORE_EXIT_NOT_RUN;
 
-//  if (UseGraal) {
-//    GraalCompiler::instance()->exit();
-//  }
+  if (UseGraal) {
+    GraalCompiler::instance()->exit();
+  }
 
   // Note: don't use a Mutex to guard the entire before_exit(), as
   // JVMTI post_thread_end_event and post_vm_death_event will run native code.