Signed shr by a constant is not the same as sdiv by 2^k

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27395 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2006-04-04 06:11:42 +00:00
parent 21760460b9
commit 1f239300d3

View File

@ -1374,15 +1374,6 @@ SCEVHandle ScalarEvolutionsImpl::createSCEV(Value *V) {
}
break;
case Instruction::Shr:
if (ConstantUInt *SA = dyn_cast<ConstantUInt>(I->getOperand(1)))
if (V->getType()->isSigned()) {
Constant *X = ConstantInt::get(V->getType(), 1);
X = ConstantExpr::getShl(X, SA);
return SCEVSDivExpr::get(getSCEV(I->getOperand(0)), getSCEV(X));
}
break;
case Instruction::Cast:
return createNodeForCast(cast<CastInst>(I));