git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@350437
91177308-0d34-0410-b5e6-
96231b3b80d8
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");
// If both operands have other uses, this is probably not profitable.
// Horizontal FP add/sub were added with SSE3.