PR7750: !CExpr->isNullValue() only properly computes whether CExpr is nonnull

if CExpr is a ConstantInt.

llvm-svn: 109773
This commit is contained in:
Eli Friedman 2010-07-29 18:03:33 +00:00
parent b2c657c618
commit 0428a61e45
1 changed files with 1 additions and 1 deletions

View File

@ -1374,7 +1374,7 @@ Instruction *InstCombiner::visitICmpInstWithInstAndIntCst(ICmpInst &ICI,
case Instruction::Or:
// If bits are being or'd in that are not present in the constant we
// are comparing against, then the comparison could never succeed!
if (Constant *BOC = dyn_cast<Constant>(BO->getOperand(1))) {
if (ConstantInt *BOC = dyn_cast<ConstantInt>(BO->getOperand(1))) {
Constant *NotCI = ConstantExpr::getNot(RHS);
if (!ConstantExpr::getAnd(BOC, NotCI)->isNullValue())
return ReplaceInstUsesWith(ICI,