mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
No no no, fix typo properly!
llvm-svn: 139134
This commit is contained in:
parent
3823432a57
commit
fdc650ea7a
@ -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…
Reference in New Issue
Block a user