commit | d1ff72b8a797304f146e4293db8c814231ea8cb3 | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Wed Feb 03 01:09:55 2010 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Wed Feb 03 01:09:55 2010 +0000 |
tree | f5933f6d4223c094abac69d75fdba2b8033e90af | |
parent | 0d883e3f8484491d010b8f8b7a1aecc58cb5fa8e [diff] [blame] |
rejigger the world so that EmitInstruction prints the \n at the end of the instruction instead of expecting the caller to do it. This currently causes the asm-verbose instruction comments to be on the next line. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95178 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp index 3f0bd61..7e22b62 100644 --- a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp +++ b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
@@ -1034,6 +1034,7 @@ EmitAlignment(2); printInstruction(MI); + O << '\n'; } }