commit | 3586e5eccf13d7129a44032a0dd553628cef3450 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sun Jan 24 19:01:06 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sun Jan 24 19:01:06 2010 +0000 |
tree | 186487b61180f7c21bb2998615743015e68bdfdb | |
parent | a801362e84e08ccaf6f4f22f22e61fe3732c3754 [diff] [blame] |
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
diff --git a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp index 4fe1b85..6a93cc6 100644 --- a/lib/CodeGen/AsmPrinter/DwarfDebug.cpp +++ b/lib/CodeGen/AsmPrinter/DwarfDebug.cpp
@@ -2383,6 +2383,7 @@ 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; } }