aboutsummaryrefslogtreecommitdiff
path: root/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
diff options
context:
space:
mode:
authorOwen Anderson <resistor@mac.com>2010-09-19 19:51:55 +0000
committerOwen Anderson <resistor@mac.com>2010-09-19 19:51:55 +0000
commitd910fb2f12782d8636950baaccbf43bd046e828f (patch)
tree2e820b5ec4de848b46f7ccb2e4b0f65c1d4060a9 /lib/CodeGen/SelectionDAG/DAGCombiner.cpp
parent71c609581458dc9df57ab62b541f3036ea9f9e8c (diff)
Tentatively enabled DAGCombiner Alias Analysis by default. As far as I know,
r114268 fixed the last of the blockers to enabling it. I will be monitoring for failures. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@114312 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r--lib/CodeGen/SelectionDAG/DAGCombiner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
index c9c4d91e97..f4b961569b 100644
--- a/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
+++ b/lib/CodeGen/SelectionDAG/DAGCombiner.cpp
@@ -46,7 +46,7 @@ STATISTIC(OpsNarrowed , "Number of load/op/store narrowed");
namespace {
static cl::opt<bool>
- CombinerAA("combiner-alias-analysis", cl::Hidden,
+ CombinerAA("combiner-alias-analysis", cl::init(true), cl::Hidden,
cl::desc("Turn on alias analysis during testing"));
static cl::opt<bool>