comparison src/share/vm/compiler/compileBroker.cpp @ 8124:5fc51c1ecdeb

Merge.
author Thomas Wuerthinger <thomas.wuerthinger@oracle.com>
date Tue, 05 Mar 2013 23:44:54 +0100
parents 3ac7d10a6572 6a51fc70a15e
children 2bc6f232f74e
comparison
equal deleted inserted replaced
7943:a413bcd552a4 8124:5fc51c1ecdeb
1419 method->is_native() ? "generation of native wrapper" : "compile", 1419 method->is_native() ? "generation of native wrapper" : "compile",
1420 (method->is_static() ? " static" : "")); 1420 (method->is_static() ? " static" : ""));
1421 method->print_short_name(tty); 1421 method->print_short_name(tty);
1422 tty->cr(); 1422 tty->cr();
1423 } 1423 }
1424 method->set_not_compilable_quietly(); 1424 method->set_not_compilable(CompLevel_all, !quietly, "excluded by CompilerOracle");
1425 } 1425 }
1426 1426
1427 return false; 1427 return false;
1428 } 1428 }
1429 1429