Fix cut-n-pasto.

llvm-svn: 83367
This commit is contained in:
Devang Patel 2009-10-06 03:15:38 +00:00
parent eb43b17074
commit 7d838bb66e
1 changed files with 1 additions and 1 deletions

View File

@ -1812,7 +1812,7 @@ void DwarfDebug::SetDbgScopeBeginLabels(const MachineInstr *MI, unsigned Label)
/// end with this machine instruction.
void DwarfDebug::SetDbgScopeEndLabels(const MachineInstr *MI, unsigned Label) {
InsnToDbgScopeMapTy::iterator I = DbgScopeEndMap.find(MI);
if (I == DbgScopeBeginMap.end())
if (I == DbgScopeEndMap.end())
return;
SmallVector<DbgScope *, 2> &SD = I->second;
for (SmallVector<DbgScope *, 2>::iterator SDI = SD.begin(), SDE = SD.end();