commit | eecb9919a41dc11e805370d66cb2e43d8ef2649e | [log] [tgz] |
---|---|---|
author | Dan Gohman <gohman@apple.com> | Sat Dec 05 01:42:34 2009 +0000 |
committer | Dan Gohman <gohman@apple.com> | Sat Dec 05 01:42:34 2009 +0000 |
tree | eb5611267acf07b257fbbb22b982ed6d0f96db4f | |
parent | 381ca5572e3c37824e1c5be0fa02f7b5bdd4a1ce [diff] [blame] |
Print newlines after printing labels for debug info, so that the output isn't cluttered with things like "Llabel47:Llabel48: movq (%rsi), %xmm3" git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@90638 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp index a8f164c..44fd176 100644 --- a/lib/CodeGen/AsmPrinter/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter/AsmPrinter.cpp
@@ -1374,6 +1374,7 @@ unsigned L = DW->RecordSourceLine(CurDLT.Line, CurDLT.Col, CurDLT.Scope); printLabel(L); + O << '\n'; DW->BeginScope(MI, L); PrevDLT = CurDLT; }