Fix levelraise/2003-01-30-ShiftCrash.ll

llvm-svn: 5435
This commit is contained in:
Chris Lattner 2003-01-30 17:10:41 +00:00
parent b428dcbeeb
commit 0ee7b79c71

View File

@ -658,7 +658,7 @@ static bool OperandConvertableToType(User *U, Value *V, const Type *Ty,
if (Ty->isSigned() != V->getType()->isSigned()) return false;
// FALL THROUGH
case Instruction::Shl:
assert(I->getOperand(0) == V);
if (I->getOperand(1) == V) return false; // Cannot change shift amount type
if (!Ty->isInteger()) return false;
return ValueConvertableToType(I, Ty, CTMap);