aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/PostRASchedulerList.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2008-12-16 06:21:45 +0000
committerDan Gohman <gohman@apple.com>2008-12-16 06:21:45 +0000
commit812d7506d0c55fbb0eee522cb77b62e4ab777dea (patch)
treeb1989238dc31b9b3055747bcd5f6e4f0b0c0798b /lib/CodeGen/PostRASchedulerList.cpp
parentfde221fa0a192a00dfdbce35ceec3d2035fe1019 (diff)
Enable anti-dependence breaking by default when post-RA scheduling is enabled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61078 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/PostRASchedulerList.cpp')
-rw-r--r--lib/CodeGen/PostRASchedulerList.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/PostRASchedulerList.cpp b/lib/CodeGen/PostRASchedulerList.cpp
index 865479d300..b5d789c38e 100644
--- a/lib/CodeGen/PostRASchedulerList.cpp
+++ b/lib/CodeGen/PostRASchedulerList.cpp
@@ -43,7 +43,7 @@ STATISTIC(NumStalls, "Number of pipeline stalls");
static cl::opt<bool>
EnableAntiDepBreaking("break-anti-dependencies",
cl::desc("Break scheduling anti-dependencies"),
- cl::init(false));
+ cl::init(true));
namespace {
class VISIBILITY_HIDDEN PostRAScheduler : public MachineFunctionPass {