From: Chris Lattner Date: Sun, 13 Sep 2009 22:24:34 +0000 (+0000) Subject: 'printMCInst' doesn't print newlines after instructions anymore. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=1b6570e527dcf748da54a539a5a817fa4334f3aa;p=oota-llvm.git 'printMCInst' doesn't print newlines after instructions anymore. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81723 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/MC/MCAsmStreamer.cpp b/lib/MC/MCAsmStreamer.cpp index 17c591b01cd..f07514c7298 100644 --- a/lib/MC/MCAsmStreamer.cpp +++ b/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) {