Skip to content

Commit 30a0c61

Browse files
author
Kim Barrett
committed
8322879: Eliminate -Wparentheses warnings in x86-32 code
Reviewed-by: kvn, shade
1 parent 409a39e commit 30a0c61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/hotspot/cpu/x86/x86_32.ad

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11142,7 +11142,7 @@ instruct convI2FPR_mem(regFPR dst, memory mem) %{
1114211142

1114311143
// Convert an int to a float in xmm; no rounding step needed.
1114411144
instruct convI2F_reg(regF dst, rRegI src) %{
11145-
predicate( UseSSE==1 || UseSSE>=2 && !UseXmmI2F );
11145+
predicate( UseSSE==1 || ( UseSSE>=2 && !UseXmmI2F ));
1114611146
match(Set dst (ConvI2F src));
1114711147
format %{ "CVTSI2SS $dst, $src" %}
1114811148
ins_encode %{

0 commit comments

Comments
 (0)