Fix bug: test/Regression/Transforms/LevelRaise/2002-09-10-PointerAdds.ll
authorChris Lattner <sabre@nondot.org>
Tue, 10 Sep 2002 19:42:53 +0000 (19:42 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 10 Sep 2002 19:42:53 +0000 (19:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3658 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/ExprTypeConvert.cpp

index 36fd86e6149ed88b76e0a62266796c53b833dc83..22ea6f3935fa3fb5948e331588d54a051544c240 100644 (file)
@@ -177,6 +177,7 @@ bool ExpressionConvertableToType(Value *V, const Type *Ty,
 
   case Instruction::Add:
   case Instruction::Sub:
+    if (!Ty->isInteger() && !Ty->isFloatingPoint()) return false;
     if (!ExpressionConvertableToType(I->getOperand(0), Ty, CTMap) ||
         !ExpressionConvertableToType(I->getOperand(1), Ty, CTMap))
       return false;
@@ -610,6 +611,8 @@ static bool OperandConvertableToType(User *U, Value *V, const Type *Ty,
     }
     // FALLTHROUGH
   case Instruction::Sub: {
+    if (!Ty->isInteger() && !Ty->isFloatingPoint()) return false;
+
     Value *OtherOp = I->getOperand((V == I->getOperand(0)) ? 1 : 0);
     return ValueConvertableToType(I, Ty, CTMap) &&
            ExpressionConvertableToType(OtherOp, Ty, CTMap);