aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SimpleRegisterCoalescing.cpp
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-02-26 20:40:22 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-02-26 20:40:22 +0000
commit4d535cadf159d30619464f61f1386ffc9a340597 (patch)
tree83485b12ed0980c945708d3e6675f7232deb2238 /lib/CodeGen/SimpleRegisterCoalescing.cpp
parent390724618c8fe6566ba08ed4135f5eac976ad948 (diff)
Enable -coalescer-commute-instrs by default.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47623 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SimpleRegisterCoalescing.cpp')
-rw-r--r--lib/CodeGen/SimpleRegisterCoalescing.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SimpleRegisterCoalescing.cpp b/lib/CodeGen/SimpleRegisterCoalescing.cpp
index c723c9eeae..f015ad5c1f 100644
--- a/lib/CodeGen/SimpleRegisterCoalescing.cpp
+++ b/lib/CodeGen/SimpleRegisterCoalescing.cpp
@@ -55,7 +55,7 @@ namespace {
static cl::opt<bool>
CommuteDef("coalescer-commute-instrs",
- cl::init(false), cl::Hidden);
+ cl::init(true), cl::Hidden);
static cl::opt<int>
CommuteLimit("commute-limit",