summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorSam Parker <sam.parker@arm.com>2019-07-30 08:14:28 +0000
committerSam Parker <sam.parker@arm.com>2019-07-30 08:14:28 +0000
commite3a4a13fcc0d23101f2dc71ffd0b9cedbc25c80c (patch)
tree043ffa9259fbf3c858596d3e7a9b4e1fc4f2d4f5 /llvm/lib
parented2ea3e46b753e4a6ea141e48427c50aaeecca55 (diff)
downloadbcm5719-llvm-e3a4a13fcc0d23101f2dc71ffd0b9cedbc25c80c.tar.gz
bcm5719-llvm-e3a4a13fcc0d23101f2dc71ffd0b9cedbc25c80c.zip
[ARM][LowOverheadLoops] Enable by default
The code is now in a good enough state to pass the bunch of tests that I have run (after fixing the bugs), so let's enable it by default. Differential Revision: https://reviews.llvm.org/D65277 llvm-svn: 367297
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp b/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
index 2a8ec734a05..fb5b08df5d3 100644
--- a/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
+++ b/llvm/lib/Target/ARM/ARMTargetTransformInfo.cpp
@@ -37,7 +37,7 @@ using namespace llvm;
#define DEBUG_TYPE "armtti"
static cl::opt<bool> DisableLowOverheadLoops(
- "disable-arm-loloops", cl::Hidden, cl::init(true),
+ "disable-arm-loloops", cl::Hidden, cl::init(false),
cl::desc("Disable the generation of low-overhead loops"));
bool ARMTTIImpl::areInlineCompatible(const Function *Caller,
OpenPOWER on IntegriCloud