From e4d266354867a936922a955c524bd23d881bd19f Mon Sep 17 00:00:00 2001 From: Simon Atanasyan Date: Tue, 20 May 2014 10:23:04 +0000 Subject: [PATCH] Add parentheses to suppress the gcc warning '-Wparentheses'. No functional changes. llvm-svn: 209203 --- lib/Target/X86/X86ISelLowering.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Target/X86/X86ISelLowering.cpp b/lib/Target/X86/X86ISelLowering.cpp index cfdaf0f8e3a..72743a97abd 100644 --- a/lib/Target/X86/X86ISelLowering.cpp +++ b/lib/Target/X86/X86ISelLowering.cpp @@ -20294,8 +20294,8 @@ static SDValue PerformINSERTPSCombine(SDNode *N, SelectionDAG &DAG, const X86Subtarget *Subtarget) { SDLoc dl(N); MVT VT = N->getOperand(1)->getSimpleValueType(0); - assert(VT == MVT::v4f32 || - VT == MVT::v4i32 && "X86insertps is only defined for v4x32"); + assert((VT == MVT::v4f32 || VT == MVT::v4i32) && + "X86insertps is only defined for v4x32"); SDValue Ld = N->getOperand(1); if (MayFoldLoad(Ld)) {