[X86][FastISel] Assert that we are dealing with arithmetic with overflow intrinsics...
authorZvi Rackover <zvi.rackover@intel.com>
Tue, 15 Nov 2016 13:50:35 +0000 (13:50 +0000)
committerZvi Rackover <zvi.rackover@intel.com>
Tue, 15 Nov 2016 13:50:35 +0000 (13:50 +0000)
llvm-svn: 286961

llvm/lib/Target/X86/X86FastISel.cpp

index a6dbf75..1979433 100644 (file)
@@ -2769,6 +2769,9 @@ bool X86FastISel::fastLowerIntrinsicCall(const IntrinsicInst *II) {
     const Function *Callee = II->getCalledFunction();
     auto *Ty = cast<StructType>(Callee->getReturnType());
     Type *RetTy = Ty->getTypeAtIndex(0U);
+    assert(Ty->getTypeAtIndex(1)->isIntegerTy() &&
+           Ty->getTypeAtIndex(1)->getScalarSizeInBits() == 1 &&
+           "Overflow value expected to be an i1");
 
     MVT VT;
     if (!isTypeLegal(RetTy, VT))