mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 17:39:16 +00:00
use a typedef instead of spelling out an insane type. Yay for auto someday.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@83707 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
433a0dbb26
commit
f9920fabac
@ -207,9 +207,9 @@ Value *SSAUpdater::GetValueInBlockInternal(BasicBlock *BB) {
|
||||
InsertedPHI->reserveOperandSpace(IncomingPredInfo.size()-FirstPredInfoEntry);
|
||||
|
||||
// Fill in all the predecessors of the PHI.
|
||||
for (std::vector<std::pair<BasicBlock*, TrackingVH<Value> > >::iterator I =
|
||||
IncomingPredInfo.begin()+FirstPredInfoEntry, E = IncomingPredInfo.end();
|
||||
I != E; ++I)
|
||||
for (IncomingPredInfoTy::iterator I =
|
||||
IncomingPredInfo.begin()+FirstPredInfoEntry,
|
||||
E = IncomingPredInfo.end(); I != E; ++I)
|
||||
InsertedPHI->addIncoming(I->second, I->first);
|
||||
|
||||
// Drop the entries we added in IncomingPredInfo to restore the stack.
|
||||
|
Loading…
x
Reference in New Issue
Block a user