[llvm-commits] [llvm] r116212 - /llvm/trunk/lib/Target/ARM/ARMFastISel.cpp

Eric Christopher echristo at apple.com
Mon Oct 11 11:48:18 PDT 2010


Author: echristo
Date: Mon Oct 11 13:48:18 2010
New Revision: 116212

URL: http://llvm.org/viewvc/llvm-project?rev=116212&view=rev
Log:
Turn on arm fast isel by default.

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

Modified: llvm/trunk/lib/Target/ARM/ARMFastISel.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/ARM/ARMFastISel.cpp?rev=116212&r1=116211&r2=116212&view=diff
==============================================================================
--- llvm/trunk/lib/Target/ARM/ARMFastISel.cpp (original)
+++ llvm/trunk/lib/Target/ARM/ARMFastISel.cpp Mon Oct 11 13:48:18 2010
@@ -48,7 +48,7 @@
 static cl::opt<bool>
 EnableARMFastISel("arm-fast-isel",
                   cl::desc("Turn on experimental ARM fast-isel support"),
-                  cl::init(false), cl::Hidden);
+                  cl::init(true), cl::Hidden);
 
 namespace {
 





More information about the llvm-commits mailing list