From: Mark Wielaard Date: Mon, 12 Oct 2015 20:14:48 +0000 (+0000) Subject: Bug 278744 cvtps2pd with redundant RexW followup. X-Git-Tag: svn/VALGRIND_3_12_0^2~67 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0170050fb7246bd5283973c03ca69f535b3cbe7a;p=thirdparty%2Fvalgrind.git Bug 278744 cvtps2pd with redundant RexW followup. Add correct parentheses as pointed out by GCC 4.9.2 -Wparentheses. git-svn-id: svn://svn.valgrind.org/vex/trunk@3199 --- diff --git a/VEX/priv/guest_amd64_toIR.c b/VEX/priv/guest_amd64_toIR.c index 06552e8f83..af4817f54a 100644 --- a/VEX/priv/guest_amd64_toIR.c +++ b/VEX/priv/guest_amd64_toIR.c @@ -13397,7 +13397,7 @@ Long dis_ESC_0F__SSE2 ( Bool* decode_OK, /* 0F 5A = CVTPS2PD -- convert 2 x F32 in low half mem/xmm to 2 x F64 in xmm(G). */ if (haveNo66noF2noF3(pfx) - && sz == 4 || /* ignore redundant REX.W */ sz == 8) { + && (sz == 4 || /* ignore redundant REX.W */ sz == 8)) { delta = dis_CVTPS2PD_128( vbi, pfx, delta, False/*!isAvx*/ ); goto decode_success; }