commit | 70337f0e084c54af2348a7a8aee72a2823c0e5b8 | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Sat Oct 31 20:59:09 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Sat Oct 31 20:59:09 2009 +0000 |
tree | c6e3a4a1b8f8a7ac77281d6f39721e0803b08aa6 | |
parent | 57b31659358cd7ae9cd045ec2ce3019b5adc234a [diff] [blame] |
Fix a missing newline in the dwarf output code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@85684 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 989f19c..58f3aa5 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1368,6 +1368,7 @@ 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