diff options
author | Dan Gohman <gohman@apple.com> | 2009-11-23 21:30:55 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-11-23 21:30:55 +0000 |
commit | 277207e6cbc217a626ef7462487906d5127bf7b0 (patch) | |
tree | 8d6ba4451a3b7af39f38a15f7c6bbcef66e02e47 /lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | 75ae593a2750f9f7995980c3a03c0d972985e394 (diff) |
Simplify this code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@89702 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 4567583628..f1b9c8ac8f 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -1854,7 +1854,7 @@ void DwarfDebug::beginScope(const MachineInstr *MI, unsigned Label) { InsnToDbgScopeMapTy::iterator I = DbgScopeBeginMap.find(MI); if (I == DbgScopeBeginMap.end()) return; - ScopeVector &SD = DbgScopeBeginMap[MI]; + ScopeVector &SD = I->second; for (ScopeVector::iterator SDI = SD.begin(), SDE = SD.end(); SDI != SDE; ++SDI) (*SDI)->setStartLabelID(Label); |