# HG changeset patch # User Bernhard Urban # Date 1396004512 -3600 # Node ID 56704532e1cdf5fea5ccc144a3a7af53b6871043 # Parent 7dfc0e9fd45aaf3aacecda087c2d287bca627cb6 disable bootstrap in tiered mode diff -r 7dfc0e9fd45a -r 56704532e1cd src/share/vm/graal/graalCompiler.cpp --- 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();