Rename a variable to avoid a declaration conflict.

llvm-svn: 114126
This commit is contained in:
Dan Gohman 2010-09-16 22:50:09 +00:00
parent f07c52621e
commit f4925061af
1 changed files with 3 additions and 3 deletions

View File

@ -125,11 +125,11 @@ void MemDepPrinter::print(raw_ostream &OS, const Module *M) const {
for (const_inst_iterator I = inst_begin(*F), E = inst_end(*F); I != E; ++I) { for (const_inst_iterator I = inst_begin(*F), E = inst_end(*F); I != E; ++I) {
const Instruction *Inst = &*I; const Instruction *Inst = &*I;
DepSetMap::const_iterator I = Deps.find(Inst); DepSetMap::const_iterator DI = Deps.find(Inst);
if (I == Deps.end()) if (DI == Deps.end())
continue; continue;
const DepSet &InstDeps = I->second; const DepSet &InstDeps = DI->second;
for (DepSet::const_iterator I = InstDeps.begin(), E = InstDeps.end(); for (DepSet::const_iterator I = InstDeps.begin(), E = InstDeps.end();
I != E; ++I) { I != E; ++I) {