forked from OSchip/llvm-project
Fix buildbot breakages from r317503. Add parentheses to assignment when using result as a condition.
llvm-svn: 317508
This commit is contained in:
parent
57f96ac6dc
commit
52a52a6cab
|
@ -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…
Reference in New Issue