mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
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:
parent
21760460b9
commit
1f239300d3
@ -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));
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user