From a2efc5ff6ecc7dfca66b51030510afd004732217 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Mon, 11 Oct 2010 18:48:18 +0000 Subject: [PATCH] Turn on arm fast isel by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116212 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/ARM/ARMFastISel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Target/ARM/ARMFastISel.cpp b/lib/Target/ARM/ARMFastISel.cpp index f778d1ab034..a7ca18e8c5e 100644 --- a/lib/Target/ARM/ARMFastISel.cpp +++ b/lib/Target/ARM/ARMFastISel.cpp @@ -48,7 +48,7 @@ using namespace llvm; static cl::opt EnableARMFastISel("arm-fast-isel", cl::desc("Turn on experimental ARM fast-isel support"), - cl::init(false), cl::Hidden); + cl::init(true), cl::Hidden); namespace { -- 2.34.1