'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
This commit is contained in:
Chris Lattner 2009-09-13 22:24:34 +00:00
parent a9ff1392ea
commit 1b6570e527

View File

@ -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) {