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:
Chris Lattner 2009-10-10 09:09:20 +00:00
parent 433a0dbb26
commit f9920fabac

View File

@ -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.