Fix Transforms/InstCombine/2006-05-04-DemandedBitCrash.ll

llvm-svn: 28101
This commit is contained in:
Chris Lattner 2006-05-04 17:33:35 +00:00
parent 618ff2dc4e
commit fb29692055
1 changed files with 4 additions and 0 deletions

View File

@ -456,6 +456,8 @@ static void ComputeMaskedBits(Value *V, uint64_t Mask, uint64_t &KnownZero,
Instruction *I = dyn_cast<Instruction>(V);
if (!I) return;
Mask &= V->getType()->getIntegralTypeMask();
switch (I->getOpcode()) {
case Instruction::And:
// If either the LHS or the RHS are Zero, the result is zero.
@ -713,6 +715,8 @@ bool InstCombiner::SimplifyDemandedBits(Value *V, uint64_t DemandedMask,
Instruction *I = dyn_cast<Instruction>(V);
if (!I) return false; // Only analyze instructions.
DemandedMask &= V->getType()->getIntegralTypeMask();
uint64_t KnownZero2, KnownOne2;
switch (I->getOpcode()) {
default: break;