diff options
| author | Chris Lattner <sabre@nondot.org> | 2010-02-10 00:36:00 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2010-02-10 00:36:00 +0000 |
| commit | ff68a42121f71774bc318a416314afda110e8004 (patch) | |
| tree | 64ee4bb4c6226487be1450f3c9309849f6ed306f /llvm/lib/Target/Alpha | |
| parent | 113b8ad7cfd570eb26ce107c626e224254965f94 (diff) | |
| download | bcm5719-llvm-ff68a42121f71774bc318a416314afda110e8004.tar.gz bcm5719-llvm-ff68a42121f71774bc318a416314afda110e8004.zip | |
print all the newlines at the end of instructions with
OutStreamer.AddBlankLine instead of textually.
llvm-svn: 95734
Diffstat (limited to 'llvm/lib/Target/Alpha')
| -rw-r--r-- | llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp b/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp index 03a49b27349..733a46c0ad2 100644 --- a/llvm/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp +++ b/llvm/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); |

