[llvm] r341932 - [ARM] Enable ARMCodeGenPrepare by default

Sam Parker via llvm-commits llvm-commits at lists.llvm.org
Tue Sep 11 05:45:43 PDT 2018


Author: sam_parker
Date: Tue Sep 11 05:45:43 2018
New Revision: 341932

URL: http://llvm.org/viewvc/llvm-project?rev=341932&view=rev
Log:
[ARM] Enable ARMCodeGenPrepare by default

We've had the pass enabled downstream for a couple of weeks and it
seems to be okay, so enable it by default.

Differential Revision: https://reviews.llvm.org/D51920

Modified:
    llvm/trunk/lib/Target/ARM/ARMCodeGenPrepare.cpp

Modified: llvm/trunk/lib/Target/ARM/ARMCodeGenPrepare.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMCodeGenPrepare.cpp?rev=341932&r1=341931&r2=341932&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMCodeGenPrepare.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMCodeGenPrepare.cpp Tue Sep 11 05:45:43 2018
@@ -42,7 +42,7 @@
 using namespace llvm;
 
 static cl::opt<bool>
-DisableCGP("arm-disable-cgp", cl::Hidden, cl::init(true),
+DisableCGP("arm-disable-cgp", cl::Hidden, cl::init(false),
            cl::desc("Disable ARM specific CodeGenPrepare pass"));
 
 static cl::opt<bool>




More information about the llvm-commits mailing list