diff options
author | Hal Finkel <hfinkel@anl.gov> | 2014-01-25 17:32:37 +0000 |
---|---|---|
committer | Hal Finkel <hfinkel@anl.gov> | 2014-01-25 17:32:37 +0000 |
commit | 5fb07341f177dc9d73cb68a98c85bb9ab6ee62b6 (patch) | |
tree | cd36a6f9fa785eec36e50c0c81414f78ff36268c /llvm/lib/CodeGen/SelectionDAG | |
parent | 1f307f49efc6cb93aedb5b5b9fb017a2b1421960 (diff) | |
download | bcm5719-llvm-5fb07341f177dc9d73cb68a98c85bb9ab6ee62b6.tar.gz bcm5719-llvm-5fb07341f177dc9d73cb68a98c85bb9ab6ee62b6.zip |
Improve descriptions of combiner-alias-analysis and combiner-global-alias-analysis
llvm-svn: 200087
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp index 3fa2a32e868..72628ef05c6 100644 --- a/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/DAGCombiner.cpp @@ -50,11 +50,11 @@ STATISTIC(SlicedLoads, "Number of load sliced"); namespace { static cl::opt<bool> CombinerAA("combiner-alias-analysis", cl::Hidden, - cl::desc("Turn on alias analysis during testing")); + cl::desc("Enable DAG combiner alias-analysis heuristics")); static cl::opt<bool> CombinerGlobalAA("combiner-global-alias-analysis", cl::Hidden, - cl::desc("Include global information in alias analysis")); + cl::desc("Enable DAG combiner's use of IR alias analysis")); /// Hidden option to stress test load slicing, i.e., when this option /// is enabled, load slicing bypasses most of its profitability guards. |