--- a/hotspot/src/share/vm/opto/parse1.cpp Wed Jun 15 09:46:15 2016 +0200
+++ b/hotspot/src/share/vm/opto/parse1.cpp Mon Jun 20 08:11:22 2016 -0400
@@ -425,7 +425,7 @@
_iter.reset_to_method(method());
_flow = method()->get_flow_analysis();
if (_flow->failing()) {
- C->record_method_not_compilable_all_tiers(_flow->failure_reason());
+ C->record_method_not_compilable(_flow->failure_reason());
}
#ifndef PRODUCT
@@ -1118,7 +1118,7 @@
// Check for really stupid bail-out cases.
uint len = TypeFunc::Parms + method()->max_locals() + method()->max_stack();
if (len >= 32760) {
- C->record_method_not_compilable_all_tiers("too many local variables");
+ C->record_method_not_compilable("too many local variables");
return NULL;
}