Skip to content
This repository was archived by the owner on Aug 27, 2022. It is now read-only.
/ lanai Public archive

Commit f82e44c

Browse files
committedApr 3, 2020
8242073: x86_32 build failure after JDK-8241040
Reviewed-by: vlivanov
1 parent a21c4fb commit f82e44c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎src/hotspot/cpu/x86/x86_32.ad

+9
Original file line numberDiff line numberDiff line change
@@ -3369,6 +3369,15 @@ operand immI8() %{
33693369
interface(CONST_INTER);
33703370
%}
33713371

3372+
operand immU8() %{
3373+
predicate((0 <= n->get_int()) && (n->get_int() <= 255));
3374+
match(ConI);
3375+
3376+
op_cost(5);
3377+
format %{ %}
3378+
interface(CONST_INTER);
3379+
%}
3380+
33723381
operand immI16() %{
33733382
predicate((-32768 <= n->get_int()) && (n->get_int() <= 32767));
33743383
match(ConI);

0 commit comments

Comments
 (0)