diff options
| author | Dan Gohman <gohman@apple.com> | 2008-12-16 06:21:45 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2008-12-16 06:21:45 +0000 |
| commit | 51559185f1d4c3c7633996a05f50b37eec90fce1 (patch) | |
| tree | f9dfc9657d0911f44e873389edc85bd1163ce02f /llvm/lib/CodeGen/PostRASchedulerList.cpp | |
| parent | 4302b4a63cc177af478628b5168aac165a1f139c (diff) | |
| download | bcm5719-llvm-51559185f1d4c3c7633996a05f50b37eec90fce1.tar.gz bcm5719-llvm-51559185f1d4c3c7633996a05f50b37eec90fce1.zip | |
Enable anti-dependence breaking by default when post-RA scheduling is enabled.
llvm-svn: 61078
Diffstat (limited to 'llvm/lib/CodeGen/PostRASchedulerList.cpp')
| -rw-r--r-- | llvm/lib/CodeGen/PostRASchedulerList.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/PostRASchedulerList.cpp b/llvm/lib/CodeGen/PostRASchedulerList.cpp index 865479d3006..b5d789c38e4 100644 --- a/llvm/lib/CodeGen/PostRASchedulerList.cpp +++ b/llvm/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 { |

