diff src/share/vm/graal/graalCompiler.cpp @ 14875:56704532e1cd

disable bootstrap in tiered mode
author Bernhard Urban <bernhard.urban@jku.at>
date Fri, 28 Mar 2014 12:01:52 +0100
parents 3e9a960f0da1
children 1415a62ac8b2
line wrap: on
line diff
--- a/src/share/vm/graal/graalCompiler.cpp	Fri Mar 28 14:58:35 2014 +0100
+++ b/src/share/vm/graal/graalCompiler.cpp	Fri Mar 28 12:01:52 2014 +0100
@@ -98,7 +98,7 @@
 
     if (UseCompiler) {
       _external_deopt_i2c_entry = create_external_deopt_i2c();
-      bool bootstrap = COMPILERGRAAL_PRESENT(BootstrapGraal) NOT_COMPILERGRAAL(false);
+      bool bootstrap = COMPILERGRAAL_PRESENT(TieredCompilation ? false : BootstrapGraal) NOT_COMPILERGRAAL(false);
       VMToCompiler::startCompiler(bootstrap);
       _initialized = true;
       CompilationPolicy::completed_vm_startup();