diff options
author | Eric Christopher <echristo@apple.com> | 2010-10-11 18:48:18 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2010-10-11 18:48:18 +0000 |
commit | 2276e87a6556106c5109aa0b7f70e4f49bad7bc1 (patch) | |
tree | 67886241759fc128962df1efee48888841c1a1f0 /llvm/lib | |
parent | 191ad7c473b506280cb24ade7d0ab25ae63a2594 (diff) | |
download | bcm5719-llvm-2276e87a6556106c5109aa0b7f70e4f49bad7bc1.tar.gz bcm5719-llvm-2276e87a6556106c5109aa0b7f70e4f49bad7bc1.zip |
Turn on arm fast isel by default.
llvm-svn: 116212
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/ARM/ARMFastISel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMFastISel.cpp b/llvm/lib/Target/ARM/ARMFastISel.cpp index f778d1ab034..a7ca18e8c5e 100644 --- a/llvm/lib/Target/ARM/ARMFastISel.cpp +++ b/llvm/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 { |