mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-24 20:44:51 +00:00
Reapply my 6/9 changes. The bug Evan saw no longer occurs.
llvm-svn: 28759
This commit is contained in:
parent
649af38df3
commit
276e728e4b
@ -73,6 +73,8 @@ namespace {
|
||||
AU.addPreservedID(LoopSimplifyID);
|
||||
AU.addRequired<LoopInfo>();
|
||||
AU.addPreserved<LoopInfo>();
|
||||
AU.addRequiredID(LCSSAID);
|
||||
AU.addPreservedID(LCSSAID);
|
||||
}
|
||||
|
||||
private:
|
||||
@ -154,6 +156,8 @@ static Value *FindLIVLoopCondition(Value *Cond, Loop *L, bool &Changed) {
|
||||
}
|
||||
|
||||
bool LoopUnswitch::visitLoop(Loop *L) {
|
||||
assert(L->isLCSSAForm());
|
||||
|
||||
bool Changed = false;
|
||||
|
||||
// Loop over all of the basic blocks in the loop. If we find an interior
|
||||
@ -198,7 +202,9 @@ bool LoopUnswitch::visitLoop(Loop *L) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
assert(L->isLCSSAForm());
|
||||
|
||||
return Changed;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user