summaryrefslogtreecommitdiff
path: root/lib/CodeGen/MachineScheduler.cpp
diff options
context:
space:
mode:
authorAndrew Trick <atrick@apple.com>2013-09-09 23:31:14 +0000
committerAndrew Trick <atrick@apple.com>2013-09-09 23:31:14 +0000
commitfc7fd0992a9114ea8a04d51d03c5fa4cdc1b33bf (patch)
tree5697dac133c60f86ecbe7902a33a351c5d9df12f /lib/CodeGen/MachineScheduler.cpp
parent5ebe6ccf658d829f9e3b7bb2ee2a5c4c392c2a7d (diff)
downloadllvm-fc7fd0992a9114ea8a04d51d03c5fa4cdc1b33bf.tar.gz
llvm-fc7fd0992a9114ea8a04d51d03c5fa4cdc1b33bf.tar.bz2
llvm-fc7fd0992a9114ea8a04d51d03c5fa4cdc1b33bf.tar.xz
Enable -misched-cyclicpath by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@190367 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/MachineScheduler.cpp')
-rw-r--r--lib/CodeGen/MachineScheduler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/MachineScheduler.cpp b/lib/CodeGen/MachineScheduler.cpp
index ef91617426..327dcc881c 100644
--- a/lib/CodeGen/MachineScheduler.cpp
+++ b/lib/CodeGen/MachineScheduler.cpp
@@ -57,7 +57,7 @@ static cl::opt<bool> EnableRegPressure("misched-regpressure", cl::Hidden,
cl::desc("Enable register pressure scheduling."), cl::init(true));
static cl::opt<bool> EnableCyclicPath("misched-cyclicpath", cl::Hidden,
- cl::desc("Enable cyclic critical path analysis."), cl::init(false));
+ cl::desc("Enable cyclic critical path analysis."), cl::init(true));
static cl::opt<bool> EnableLoadCluster("misched-cluster", cl::Hidden,
cl::desc("Enable load clustering."), cl::init(true));