[llvm-commits] [llvm] r119108 - /llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp

Chris Lattner sabre at nondot.org
Sun Nov 14 19:27:05 PST 2010


Author: lattner
Date: Sun Nov 14 21:27:05 2010
New Revision: 119108

URL: http://llvm.org/viewvc/llvm-project?rev=119108&view=rev
Log:
Turn on the new instprinter by default.

The only change in the output is:

1) we get a better comment on mfcr, we get:
	mfcr r2                         ; cr2
  instead of:
 	mfcr r2 ; 32

2) we no longer emit $stub's on powerpc/leopard.  The Leopard
   linker autosynthesizes them.


Modified:
    llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp

Modified: llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp?rev=119108&r1=119107&r2=119108&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp Sun Nov 14 21:27:05 2010
@@ -59,7 +59,7 @@
 // path.
 static cl::opt<bool> UseInstPrinter("enable-ppc-inst-printer",
                                     cl::ReallyHidden
-                                    //, cl::init(true)
+                                    , cl::init(true)
                                     );
 
 namespace {





More information about the llvm-commits mailing list