mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
divide by the result of the gcd
used to fail with 'Step should divide Start with no remainder.' git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@205802 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
89e11b110a
commit
a83f78786e
@ -7138,7 +7138,7 @@ public:
|
||||
const SCEV *Res = SCEVGCD::findGCD(SE, Expr->getOperand(i), GCD, &Rem);
|
||||
if (Rem == Zero) {
|
||||
PartialGCD = SE.getMulExpr(PartialGCD, Res);
|
||||
Operands.push_back(divide(SE, Expr->getOperand(i), GCD));
|
||||
Operands.push_back(divide(SE, Expr->getOperand(i), Res));
|
||||
} else {
|
||||
Operands.push_back(Expr->getOperand(i));
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user