1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2025-02-01 05:01:59 +01:00

Add parentheses to suppress the gcc warning '-Wparentheses'.

No functional changes.

llvm-svn: 209203
This commit is contained in:
Simon Atanasyan 2014-05-20 10:23:04 +00:00
parent 5f1713b9ab
commit e4d2663548

View File

@ -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)) {