mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 19:23:23 +01:00
prepare for a change I'm about to make
llvm-svn: 31248
This commit is contained in:
parent
0d69f553c9
commit
93414d06c4
@ -379,6 +379,9 @@ static bool IVUseShouldUsePostIncValue(Instruction *User, Instruction *IV,
|
||||
for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i)
|
||||
if (PN->getIncomingValue(i) == IV) {
|
||||
SplitCriticalEdge(PN->getIncomingBlock(i), PN->getParent(), P);
|
||||
// Splitting the critical edge can reduce the number of entries in this
|
||||
// PHI.
|
||||
e = PN->getNumIncomingValues();
|
||||
if (--NumUses == 0) break;
|
||||
}
|
||||
|
||||
@ -589,6 +592,9 @@ void BasedUser::RewriteInstructionToUseNewBase(const SCEVHandle &NewBase,
|
||||
BasicBlock *NewBB = PN->getIncomingBlock(i);
|
||||
NewBB->moveBefore(PN->getParent());
|
||||
}
|
||||
|
||||
// Splitting the edge can reduce the number of PHI entries we have.
|
||||
e = PN->getNumIncomingValues();
|
||||
}
|
||||
|
||||
Value *&Code = InsertedCode[PN->getIncomingBlock(i)];
|
||||
|
Loading…
Reference in New Issue
Block a user