aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Alpha
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-02-10 00:36:00 +0000
committerChris Lattner <sabre@nondot.org>2010-02-10 00:36:00 +0000
commit726d397a8cc48a5cb5d2f8a0fe10f7f17f7d4afc (patch)
tree14eee00d859ea67c6088e95ce4c8a4e1ade33c35 /lib/Target/Alpha
parente42d6cd4e7b0f4f5fe7d7b174fe107943b624f26 (diff)
downloadexternal_llvm-726d397a8cc48a5cb5d2f8a0fe10f7f17f7d4afc.tar.gz
external_llvm-726d397a8cc48a5cb5d2f8a0fe10f7f17f7d4afc.tar.bz2
external_llvm-726d397a8cc48a5cb5d2f8a0fe10f7f17f7d4afc.zip
print all the newlines at the end of instructions with
OutStreamer.AddBlankLine instead of textually. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95734 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha')
-rw-r--r--lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
index 03a49b2734..733a46c0ad 100644
--- a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
+++ b/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
@@ -47,7 +47,7 @@ namespace {
void printInstruction(const MachineInstr *MI);
void EmitInstruction(const MachineInstr *MI) {
printInstruction(MI);
- O << '\n';
+ OutStreamer.AddBlankLine();
}
static const char *getRegisterName(unsigned RegNo);