1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-20 03:23:01 +02:00

[X86] Silence a -Wparentheses warning on gcc. NFC

llvm-svn: 351111
This commit is contained in:
Craig Topper 2019-01-14 19:44:02 +00:00
parent 5698792ccc
commit a9afee5c85

View File

@ -18575,7 +18575,7 @@ static SDValue lowerAddSubToHorizontalOp(SDValue Op, SelectionDAG &DAG,
static SDValue lowerFaddFsub(SDValue Op, SelectionDAG &DAG,
const X86Subtarget &Subtarget) {
MVT VT = Op.getSimpleValueType();
assert(VT == MVT::f32 || VT == MVT::f64 && "Only expecting float/double");
assert((VT == MVT::f32 || VT == MVT::f64) && "Only expecting float/double");
return lowerAddSubToHorizontalOp(Op, DAG, Subtarget);
}