diff src/share/vm/compiler/compileBroker.cpp @ 3555:22d11b3bc561

Various hacks to be able to install machine code from a Java thread.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 24 Aug 2011 01:05:02 +0200
parents 65981c23c1d6
children 5e9645341ec3
line wrap: on
line diff
--- a/src/share/vm/compiler/compileBroker.cpp	Mon Aug 22 19:55:06 2011 +0200
+++ b/src/share/vm/compiler/compileBroker.cpp	Wed Aug 24 01:05:02 2011 +0200
@@ -660,7 +660,7 @@
   tty->print_cr("Bootstrapping graal....");
 
   GraalCompiler* compiler = GraalCompiler::instance();
-  if (compiler == NULL) fatal("must use flag -XX:+UseGraal");
+  assert(compiler != NULL, "just checking");
 
   jlong start = os::javaTimeMillis();
   add_method_to_queue(SystemDictionary::Object_klass(), vmSymbols::object_initializer_name(), vmSymbols::void_method_signature());