From 30a0c61de080a0cc52ec163095fe0f02f324474e Mon Sep 17 00:00:00 2001 From: Kim Barrett Date: Wed, 3 Jan 2024 20:13:57 +0000 Subject: [PATCH] 8322879: Eliminate -Wparentheses warnings in x86-32 code Reviewed-by: kvn, shade --- src/hotspot/cpu/x86/x86_32.ad | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hotspot/cpu/x86/x86_32.ad b/src/hotspot/cpu/x86/x86_32.ad index 07b3cb35a38..45cc785a539 100644 --- a/src/hotspot/cpu/x86/x86_32.ad +++ b/src/hotspot/cpu/x86/x86_32.ad @@ -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 %{