Fix a missing newline in the dwarf output code.
authorDan Gohman <gohman@apple.com>
Sat, 31 Oct 2009 20:59:09 +0000 (20:59 +0000)
committerDan Gohman <gohman@apple.com>
Sat, 31 Oct 2009 20:59:09 +0000 (20:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85684 91177308-0d34-0410-b5e6-96231b3b80d8

lib/CodeGen/AsmPrinter/AsmPrinter.cpp

index 989f19cb0ad677b9581a860a11e5692f40c6b3c6..58f3aa50665c655c0149f039e839afbca583d51d 100644 (file)
@@ -1368,6 +1368,7 @@ void AsmPrinter::processDebugLoc(const MachineInstr *MI,
          unsigned L = DW->RecordSourceLine(CurDLT.Line, CurDLT.Col,
                                            CurDLT.Scope);
           printLabel(L);
+          O << '\n';
 #ifdef ATTACH_DEBUG_INFO_TO_AN_INSN
           DW->SetDbgScopeBeginLabels(MI, L);
 #endif