diff options
| author | Chris Lattner <sabre@nondot.org> | 2009-09-13 22:24:34 +0000 |
|---|---|---|
| committer | Chris Lattner <sabre@nondot.org> | 2009-09-13 22:24:34 +0000 |
| commit | a4760f3642584237293f26249833622250a1f7c9 (patch) | |
| tree | 2a75b6666f85d141994aaebd97a3a69474d5d7cd /llvm/lib/MC | |
| parent | b9a781373cfcdd4cd4807fddc7e1c850bcac846f (diff) | |
| download | bcm5719-llvm-a4760f3642584237293f26249833622250a1f7c9.tar.gz bcm5719-llvm-a4760f3642584237293f26249833622250a1f7c9.zip | |
'printMCInst' doesn't print newlines after instructions anymore.
llvm-svn: 81723
Diffstat (limited to 'llvm/lib/MC')
| -rw-r--r-- | llvm/lib/MC/MCAsmStreamer.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/MC/MCAsmStreamer.cpp b/llvm/lib/MC/MCAsmStreamer.cpp index 17c591b01cd..f07514c7298 100644 --- a/llvm/lib/MC/MCAsmStreamer.cpp +++ b/llvm/lib/MC/MCAsmStreamer.cpp @@ -267,6 +267,7 @@ void MCAsmStreamer::EmitInstruction(const MCInst &Inst) { // If we have an AsmPrinter, use that to print. if (Printer) { Printer->printMCInst(&Inst); + OS << '\n'; // Show the encoding if we have a code emitter. if (Emitter) { |

