mirror of
https://github.com/RPCS3/llvm.git
synced 2025-03-01 15:19:05 +00:00
Fix buildbot breakages from r317503. Add parentheses to assignment when using result as a condition.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@317508 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
20a90ab746
commit
e005ea7d87
@ -8139,10 +8139,10 @@ SDValue PPCTargetLowering::LowerVECTOR_SHUFFLE(SDValue Op,
|
||||
|
||||
if (Subtarget.hasP9Altivec()) {
|
||||
SDValue NewISDNode;
|
||||
if (NewISDNode = lowerToVINSERTH(SVOp, DAG))
|
||||
if ((NewISDNode = lowerToVINSERTH(SVOp, DAG)))
|
||||
return NewISDNode;
|
||||
|
||||
if (NewISDNode = lowerToVINSERTB(SVOp, DAG))
|
||||
if ((NewISDNode = lowerToVINSERTB(SVOp, DAG)))
|
||||
return NewISDNode;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user