mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-31 09:32:11 +00:00
Reapply r112432, now that the real problem is addressed.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@112667 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6a0c125ed5
commit
3f19c091bf
@ -3332,11 +3332,16 @@ const SCEV *ScalarEvolution::createSCEV(Value *V) {
|
||||
// LLVM IR canonical form means we need only traverse the left operands.
|
||||
SmallVector<const SCEV *, 4> AddOps;
|
||||
AddOps.push_back(getSCEV(U->getOperand(1)));
|
||||
for (Value *Op = U->getOperand(0);
|
||||
Op->getValueID() == Instruction::Add + Value::InstructionVal;
|
||||
Op = U->getOperand(0)) {
|
||||
for (Value *Op = U->getOperand(0); ; Op = U->getOperand(0)) {
|
||||
unsigned Opcode = Op->getValueID() - Value::InstructionVal;
|
||||
if (Opcode != Instruction::Add && Opcode != Instruction::Sub)
|
||||
break;
|
||||
U = cast<Operator>(Op);
|
||||
AddOps.push_back(getSCEV(U->getOperand(1)));
|
||||
const SCEV *Op1 = getSCEV(U->getOperand(1));
|
||||
if (Opcode == Instruction::Sub)
|
||||
AddOps.push_back(getNegativeSCEV(Op1));
|
||||
else
|
||||
AddOps.push_back(Op1);
|
||||
}
|
||||
AddOps.push_back(getSCEV(U->getOperand(0)));
|
||||
return getAddExpr(AddOps);
|
||||
|
Loading…
Reference in New Issue
Block a user