diff options
author | Dan Gohman <gohman@apple.com> | 2009-10-31 20:59:09 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-10-31 20:59:09 +0000 |
commit | ae6bb6159461e2ead080e548abe9ab00ed561f91 (patch) | |
tree | 39dd803f21a5c32104828079b93adbdd5da1a036 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | |
parent | 170a56f135636006e71e5599936ba508767230a8 (diff) | |
download | bcm5719-llvm-ae6bb6159461e2ead080e548abe9ab00ed561f91.tar.gz bcm5719-llvm-ae6bb6159461e2ead080e548abe9ab00ed561f91.zip |
Fix a missing newline in the dwarf output code.
llvm-svn: 85684
Diffstat (limited to 'llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp')
-rw-r--r-- | llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index 989f19cb0ad..58f3aa50665 100644 --- a/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp @@ -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 |