mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-08 06:32:24 +00:00
No no no, fix typo properly!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@139134 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
fa151a79ed
commit
980e9f399d
@ -1735,7 +1735,7 @@ const SCEV *ScalarEvolution::getAddExpr(SmallVectorImpl<const SCEV *> &Ops,
|
||||
// If all of the other operands were loop invariant, we are done.
|
||||
if (Ops.size() == 1) return NewRec;
|
||||
|
||||
// Otherwise, add the folded AddRec by the non-live parts.
|
||||
// Otherwise, add the folded AddRec by the non-invariant parts.
|
||||
for (unsigned i = 0;; ++i)
|
||||
if (Ops[i] == AddRec) {
|
||||
Ops[i] = NewRec;
|
||||
@ -1960,7 +1960,7 @@ const SCEV *ScalarEvolution::getMulExpr(SmallVectorImpl<const SCEV *> &Ops,
|
||||
// If all of the other operands were loop invariant, we are done.
|
||||
if (Ops.size() == 1) return NewRec;
|
||||
|
||||
// Otherwise, multiply the folded AddRec by the non-live parts.
|
||||
// Otherwise, multiply the folded AddRec by the non-invariant parts.
|
||||
for (unsigned i = 0;; ++i)
|
||||
if (Ops[i] == AddRec) {
|
||||
Ops[i] = NewRec;
|
||||
|
Loading…
x
Reference in New Issue
Block a user