Do not allow packed types for icmp and fcmp instructions.
authorReid Spencer <rspencer@reidspencer.com>
Thu, 4 Jan 2007 05:22:18 +0000 (05:22 +0000)
committerReid Spencer <rspencer@reidspencer.com>
Thu, 4 Jan 2007 05:22:18 +0000 (05:22 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32865 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Verifier.cpp

index d08166da21790a9335e01954e6ea46d792b10385..719c6f2f5f091aa8123c9f8746e676d30b2be6b0 100644 (file)
@@ -739,9 +739,7 @@ void Verifier::visitICmpInst(ICmpInst& IC) {
   Assert1(Op0Ty == Op1Ty,
           "Both operands to ICmp instruction are not of the same type!", &IC);
   // Check that the operands are the right type
-  Assert1(Op0Ty->isIntegral() || Op0Ty->getTypeID() == Type::PointerTyID ||
-          (isa<PackedType>(Op0Ty) && 
-           cast<PackedType>(Op0Ty)->getElementType()->isIntegral()),
+  Assert1(Op0Ty->isIntegral() || Op0Ty->getTypeID() == Type::PointerTyID,
           "Invalid operand types for ICmp instruction", &IC);
   visitInstruction(IC);
 }
@@ -753,8 +751,7 @@ void Verifier::visitFCmpInst(FCmpInst& FC) {
   Assert1(Op0Ty == Op1Ty,
           "Both operands to FCmp instruction are not of the same type!", &FC);
   // Check that the operands are the right type
-  Assert1(Op0Ty->isFloatingPoint() || (isa<PackedType>(Op0Ty) &&
-           cast<PackedType>(Op0Ty)->getElementType()->isFloatingPoint()),
+  Assert1(Op0Ty->isFloatingPoint(),
           "Invalid operand types for FCmp instruction", &FC);
   visitInstruction(FC);
 }