diff options
author | Sam Parker <sam.parker@arm.com> | 2019-07-30 08:14:28 +0000 |
---|---|---|
committer | Sam Parker <sam.parker@arm.com> | 2019-07-30 08:14:28 +0000 |
commit | e3a4a13fcc0d23101f2dc71ffd0b9cedbc25c80c (patch) | |
tree | 043ffa9259fbf3c858596d3e7a9b4e1fc4f2d4f5 /llvm/lib | |
parent | ed2ea3e46b753e4a6ea141e48427c50aaeecca55 (diff) | |
download | bcm5719-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.cpp | 2 |
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, |