mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-07 01:38:26 +00:00
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@41292 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
16adc23858
commit
a24d918063
@ -898,7 +898,7 @@ bool LoopIndexSplit::splitLoop(SplitInfo &SD) {
|
||||
BasicBlock *A_SplitCondBlock = SD.SplitCondition->getParent();
|
||||
BranchInst *A_BR = cast<BranchInst>(A_SplitCondBlock->getTerminator());
|
||||
BasicBlock *A_InactiveBranch = A_BR->getSuccessor(1);
|
||||
BasicBlock *A_ActiveBranch = A_BR->getSuccessor(1);
|
||||
BasicBlock *A_ActiveBranch = A_BR->getSuccessor(0);
|
||||
A_BR->setUnconditionalDest(A_BR->getSuccessor(0));
|
||||
removeBlocks(A_InactiveBranch, L, A_ActiveBranch);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user