8242073: x86_32 build failure after JDK-8241040

Reviewed-by: vlivanov
This commit is contained in:
Aleksey Shipilev 2020-04-03 11:33:29 +02:00
parent a21c4fb0a6
commit f82e44cc40

View File

@ -3369,6 +3369,15 @@ operand immI8() %{
interface(CONST_INTER);
%}
operand immU8() %{
predicate((0 <= n->get_int()) && (n->get_int() <= 255));
match(ConI);
op_cost(5);
format %{ %}
interface(CONST_INTER);
%}
operand immI16() %{
predicate((-32768 <= n->get_int()) && (n->get_int() <= 32767));
match(ConI);