1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

use a typedef instead of spelling out an insane type. Yay for auto someday.

llvm-svn: 83707
This commit is contained in:
Chris Lattner 2009-10-10 09:09:20 +00:00
parent 75e5de9243
commit 0561804097

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.