[llvm-commits] [llvm] r81723 - /llvm/trunk/lib/MC/MCAsmStreamer.cpp
Chris Lattner
sabre at nondot.org
Sun Sep 13 15:24:35 PDT 2009
Author: lattner
Date: Sun Sep 13 17:24:34 2009
New Revision: 81723
URL: http://llvm.org/viewvc/llvm-project?rev=81723&view=rev
Log:
'printMCInst' doesn't print newlines after instructions anymore.
Modified:
llvm/trunk/lib/MC/MCAsmStreamer.cpp
Modified: llvm/trunk/lib/MC/MCAsmStreamer.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/MC/MCAsmStreamer.cpp?rev=81723&r1=81722&r2=81723&view=diff
==============================================================================
--- llvm/trunk/lib/MC/MCAsmStreamer.cpp (original)
+++ llvm/trunk/lib/MC/MCAsmStreamer.cpp Sun Sep 13 17:24:34 2009
@@ -267,6 +267,7 @@
// 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) {
More information about the llvm-commits
mailing list