Turn on the new instprinter by default.
authorChris Lattner <sabre@nondot.org>
Mon, 15 Nov 2010 03:27:05 +0000 (03:27 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 15 Nov 2010 03:27:05 +0000 (03:27 +0000)
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.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119108 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/PowerPC/PPCAsmPrinter.cpp

index 354b4cb5374153b4e82303c55deb952477bd01f0..a3cac213544cf06ab11e43f632280b7590c0f4be 100644 (file)
@@ -59,7 +59,7 @@ using namespace llvm;
 // path.
 static cl::opt<bool> UseInstPrinter("enable-ppc-inst-printer",
                                     cl::ReallyHidden
-                                    //, cl::init(true)
+                                    , cl::init(true)
                                     );
 
 namespace {