diff options
| author | Devang Patel <dpatel@apple.com> | 2009-10-06 03:15:38 +0000 | 
|---|---|---|
| committer | Devang Patel <dpatel@apple.com> | 2009-10-06 03:15:38 +0000 | 
| commit | 7d838bb66e15e3d403f413a35c0f5f50a2131632 (patch) | |
| tree | f8e6fbbab48277c28f386d1e9e9e05e3a7956507 /llvm/lib | |
| parent | eb43b170740e57faf615ffab5008b52582a7efd8 (diff) | |
| download | bcm5719-llvm-7d838bb66e15e3d403f413a35c0f5f50a2131632.tar.gz bcm5719-llvm-7d838bb66e15e3d403f413a35c0f5f50a2131632.zip | |
Fix cut-n-pasto.
llvm-svn: 83367
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index fc3201d9204..cd4fd768ba9 100644 --- a/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -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(); | 

