summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-10-31 20:59:09 +0000
committerDan Gohman <gohman@apple.com>2009-10-31 20:59:09 +0000
commitae6bb6159461e2ead080e548abe9ab00ed561f91 (patch)
tree39dd803f21a5c32104828079b93adbdd5da1a036 /llvm/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
parent170a56f135636006e71e5599936ba508767230a8 (diff)
downloadbcm5719-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.cpp1
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
OpenPOWER on IntegriCloud