diff src/share/vm/graal/graalCompiler.cpp @ 18144:70077134cabc

graalCompiler: remove unnecessary HandleMark.
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 21 Oct 2014 16:43:14 +0200
parents 6a2f814224b1
children 9bb816169777
line wrap: on
line diff
--- a/src/share/vm/graal/graalCompiler.cpp	Tue Oct 21 16:24:53 2014 +0200
+++ b/src/share/vm/graal/graalCompiler.cpp	Tue Oct 21 16:43:14 2014 +0200
@@ -55,14 +55,9 @@
   } else {
     set_state(initialized);
   }
-
-  {
-    HandleMark hm;
-
-    // Graal is considered as application code so we need to
-    // stop the VM deferring compilation now.
-    CompilationPolicy::completed_vm_startup();
-  }
+  // Graal is considered as application code so we need to
+  // stop the VM deferring compilation now.
+  CompilationPolicy::completed_vm_startup();
 #endif // COMPILERGRAAL
 }