Turn on arm fast isel by default.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116212 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp
index f778d1a..a7ca18e 100644
--- a/lib/Target/ARM/ARMFastISel.cpp
+++ b/lib/Target/ARM/ARMFastISel.cpp
@@ -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 {