From 9ffced5b9d7573df48605fe10ba20a0f6a04c41c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 15 Nov 2010 03:27:05 +0000 Subject: [PATCH] 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. llvm-svn: 119108 --- lib/Target/PowerPC/PPCAsmPrinter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index 354b4cb5374..a3cac213544 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -59,7 +59,7 @@ using namespace llvm; // path. static cl::opt UseInstPrinter("enable-ppc-inst-printer", cl::ReallyHidden - //, cl::init(true) + , cl::init(true) ); namespace {