8264626: C1 should be able to inline excluded methods

Reviewed-by: iveresov, thartmann
This commit is contained in:
Nils Eliasson 2021-04-06 06:47:00 +00:00
parent ff223530b6
commit ec7b0028e8

View file

@ -3461,7 +3461,6 @@ const char* GraphBuilder::check_can_parse(ciMethod* callee) const {
// Certain methods cannot be parsed at all:
if ( callee->is_native()) return "native method";
if ( callee->is_abstract()) return "abstract method";
if (!callee->can_be_compiled()) return "not compilable (disabled)";
if (!callee->can_be_parsed()) return "cannot be parsed";
return NULL;
}