mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
Bail out early, before modifying anything.
llvm-svn: 42120
This commit is contained in:
parent
9806df698b
commit
03df2adc31
@ -542,6 +542,11 @@ bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) {
|
||||
if (!safeSplitCondition(SD))
|
||||
return false;
|
||||
|
||||
BasicBlock *Latch = L->getLoopLatch();
|
||||
BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator());
|
||||
if (!BR)
|
||||
return false;
|
||||
|
||||
// Update CFG.
|
||||
|
||||
// Replace index variable with split value in loop body. Loop body is executed
|
||||
@ -549,11 +554,7 @@ bool LoopIndexSplit::processOneIterationLoop(SplitInfo &SD) {
|
||||
IndVar->replaceAllUsesWith(SD.SplitValue);
|
||||
|
||||
// Remove Latch to Header edge.
|
||||
BasicBlock *Latch = L->getLoopLatch();
|
||||
BasicBlock *LatchSucc = NULL;
|
||||
BranchInst *BR = dyn_cast<BranchInst>(Latch->getTerminator());
|
||||
if (!BR)
|
||||
return false;
|
||||
Header->removePredecessor(Latch);
|
||||
for (succ_iterator SI = succ_begin(Latch), E = succ_end(Latch);
|
||||
SI != E; ++SI) {
|
||||
|
Loading…
Reference in New Issue
Block a user