[X86] Fix warning; NFC
authorNikita Popov <nikita.ppv@gmail.com>
Fri, 4 Jan 2019 21:41:35 +0000 (21:41 +0000)
committerNikita Popov <nikita.ppv@gmail.com>
Fri, 4 Jan 2019 21:41:35 +0000 (21:41 +0000)
llvm-svn: 350437

llvm/lib/Target/X86/X86ISelLowering.cpp

index f3aa47c..25a93e9 100644 (file)
@@ -18344,7 +18344,7 @@ static bool shouldUseHorizontalOp(bool IsSingleSource, 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");
 
   // If both operands have other uses, this is probably not profitable.
   // Horizontal FP add/sub were added with SSE3.