mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
cache result of operator*
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@107984 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
bf2eefdb0d
commit
9085fcab82
@ -403,11 +403,13 @@ BasicBlock *llvm::SplitCriticalEdge(TerminatorInst *TI, unsigned SuccNum,
|
||||
bool HasPredOutsideOfLoop = false;
|
||||
BasicBlock *Exit = ExitBlocks[i];
|
||||
for (pred_iterator I = pred_begin(Exit), E = pred_end(Exit);
|
||||
I != E; ++I)
|
||||
if (TIL->contains(*I))
|
||||
Preds.push_back(*I);
|
||||
I != E; ++I) {
|
||||
BasicBlock *P = *I;
|
||||
if (TIL->contains(P))
|
||||
Preds.push_back(P);
|
||||
else
|
||||
HasPredOutsideOfLoop = true;
|
||||
}
|
||||
// If there are any preds not in the loop, we'll need to split
|
||||
// the edges. The Preds.empty() check is needed because a block
|
||||
// may appear multiple times in the list. We can't use
|
||||
|
Loading…
x
Reference in New Issue
Block a user