mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-13 09:33:50 +00:00
Remove unused variables.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41028 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
ccb36a4f1b
commit
9626a9c700
@ -621,12 +621,12 @@ bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
|
||||
if (L->contains(ExitDest))
|
||||
ExitDest = ExitInsn->getSuccessor(0);
|
||||
assert (!L->contains(ExitDest) && " Unable to find exit edge destination");
|
||||
BasicBlock *ExitSplitBlock = SplitEdge(ExitBlock, ExitDest, this);
|
||||
SplitEdge(ExitBlock, ExitDest, this);
|
||||
|
||||
//[*] Clone loop. Avoid true destination of split condition and
|
||||
// the blocks dominated by true destination.
|
||||
DenseMap<const Value *, Value *> ValueMap;
|
||||
Loop *FalseLoop = CloneLoop(L, LPM, LI, ValueMap, this);
|
||||
CloneLoop(L, LPM, LI, ValueMap, this);
|
||||
|
||||
//[*] True loops exit edge enters False loop.
|
||||
//[*] Eliminate split condition's false branch from True loop.
|
||||
|
Loading…
x
Reference in New Issue
Block a user