commit | 0c920438c1f21ee6d9befa4aac8b884b8cafbc9c | [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 | ff259dbe71427fbe989d2f886f08c00e369df771 [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'; } }