changeset 18144:70077134cabc

graalCompiler: remove unnecessary HandleMark.
author Bernhard Urban <bernhard.urban@jku.at>
date Tue, 21 Oct 2014 16:43:14 +0200
parents 0e1c92b8b267
children 0e7455cb3004
files src/share/vm/graal/graalCompiler.cpp
diffstat 1 files changed, 3 insertions(+), 8 deletions(-) [+]
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
 }