diff options
author | Owen Anderson <resistor@mac.com> | 2010-09-19 19:51:55 +0000 |
---|---|---|
committer | Owen Anderson <resistor@mac.com> | 2010-09-19 19:51:55 +0000 |
commit | ff82f8a35b5358aebdd61dcf9c90b67df8205bc6 (patch) | |
tree | 8e7b674d85375b9bba49c78d61779ffc89f7777c /llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | |
parent | 549decf4cc37118fa50ba92ef8f0d9e7781fed8a (diff) | |
download | bcm5719-llvm-ff82f8a35b5358aebdd61dcf9c90b67df8205bc6.tar.gz bcm5719-llvm-ff82f8a35b5358aebdd61dcf9c90b67df8205bc6.zip |
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.
llvm-svn: 114312
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index c9c4d91e973..f4b961569b4 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/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> |