diff options
author | Chris Lattner <sabre@nondot.org> | 2010-01-24 19:01:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-01-24 19:01:06 +0000 |
commit | 3586e5eccf13d7129a44032a0dd553628cef3450 (patch) | |
tree | 186487b61180f7c21bb2998615743015e68bdfdb /lib/CodeGen/AsmPrinter/DwarfDebug.cpp | |
parent | a801362e84e08ccaf6f4f22f22e61fe3732c3754 (diff) |
fix some issues where we weren't emitting enough newlines.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94370 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter/DwarfDebug.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter/DwarfDebug.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 4fe1b8512d..6a93cc6578 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp @@ -2383,6 +2383,7 @@ void DwarfDebug::emitDIE(DIE *Die) { default: // Emit an attribute using the defined form. Values[i]->EmitValue(this, Form); + O << "\n"; // REMOVE This once all EmitValue impls emit their own newline. break; } } |