aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2010-10-11 18:48:18 +0000
committerEric Christopher <echristo@apple.com>2010-10-11 18:48:18 +0000
commita2efc5ff6ecc7dfca66b51030510afd004732217 (patch)
tree8af7cee4e715902149dab5bd74b84ab187efffc3
parent01855071e24e0e3e75306b82267d3ad0b13a0c15 (diff)
Turn on arm fast isel by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116212 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Target/ARM/ARMFastISel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index f778d1ab03..a7ca18e8c5 100644
--- a/lib/Target/ARM/ARMFastISel.cpp
+++ b/lib/Target/ARM/ARMFastISel.cpp
@@ -48,7 +48,7 @@ using namespace llvm;
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 {