8322879: Eliminate -Wparentheses warnings in x86-32 code

Reviewed-by: kvn, shade
This commit is contained in:
Kim Barrett 2024-01-03 20:13:57 +00:00
parent 409a39ec8d
commit 30a0c61de0

View File

@ -11142,7 +11142,7 @@ instruct convI2FPR_mem(regFPR dst, memory mem) %{
// Convert an int to a float in xmm; no rounding step needed.
instruct convI2F_reg(regF dst, rRegI src) %{
predicate( UseSSE==1 || UseSSE>=2 && !UseXmmI2F );
predicate( UseSSE==1 || ( UseSSE>=2 && !UseXmmI2F ));
match(Set dst (ConvI2F src));
format %{ "CVTSI2SS $dst, $src" %}
ins_encode %{