# HG changeset patch # User Thomas Wuerthinger # Date 1321454799 -3600 # Node ID 9c2c0a182f131b7dce66e5b7554e3a642dc901d2 # Parent 8093b8a2a76d0260660685db5c6ee82cdab6d661 Ignore that task code field is not set. diff -r 8093b8a2a76d -r 9c2c0a182f13 src/share/vm/compiler/compileBroker.cpp --- a/src/share/vm/compiler/compileBroker.cpp Wed Nov 16 13:56:48 2011 +0100 +++ b/src/share/vm/compiler/compileBroker.cpp Wed Nov 16 15:46:39 2011 +0100 @@ -1809,12 +1809,13 @@ compiler(task->comp_level())->compile_method(&ci_env, target, osr_bci); - if (!ci_env.failing() && task->code() == NULL) { + // TODO (tw): Check if this is OK. + /*if (!ci_env.failing() && task->code() == NULL) { //assert(false, "compiler should always document failure"); // The compiler elected, without comment, not to register a result. // Do not attempt further compilations of this method. ci_env.record_method_not_compilable("compile failed", !TieredCompilation); - } + }*/ if (ci_env.failing()) { // Copy this bit to the enclosing block: