aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-11-15 03:27:05 +0000
committerChris Lattner <sabre@nondot.org>2010-11-15 03:27:05 +0000
commit3a4dd305ac7a3ddce109b359c8994c1a7868316a (patch)
treebb9bc5d9a1344b8ea390620cb84d5575b71c7b46 /lib
parent68b3f0c40e29e461dbbc85370078692df4336b42 (diff)
downloadexternal_llvm-3a4dd305ac7a3ddce109b359c8994c1a7868316a.zip
external_llvm-3a4dd305ac7a3ddce109b359c8994c1a7868316a.tar.gz
external_llvm-3a4dd305ac7a3ddce109b359c8994c1a7868316a.tar.bz2
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. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@119108 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r--lib/Target/PowerPC/PPCAsmPrinter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp
index 354b4cb..a3cac21 100644
--- a/lib/Target/PowerPC/PPCAsmPrinter.cpp
+++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp
@@ -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 {