diff options
| author | Eli Friedman <eli.friedman@gmail.com> | 2011-10-27 22:32:13 +0000 |
|---|---|---|
| committer | Eli Friedman <eli.friedman@gmail.com> | 2011-10-27 22:32:13 +0000 |
| commit | 548735633684b33799947420651d8a2ca17273ee (patch) | |
| tree | b18c9c27ddc022ced9bbe97833c374c232d2bc53 /llvm | |
| parent | 12a39540bb74539a0f1a13a71d1ceb0fc2580dcf (diff) | |
| download | bcm5719-llvm-548735633684b33799947420651d8a2ca17273ee.tar.gz bcm5719-llvm-548735633684b33799947420651d8a2ca17273ee.zip | |
The default alias analysis is -noaa; update the docs to reflect that. Patch by Michael Ilseman.
llvm-svn: 143159
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/docs/Passes.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/llvm/docs/Passes.html b/llvm/docs/Passes.html index 9393410a360..5c42f3fdd58 100644 --- a/llvm/docs/Passes.html +++ b/llvm/docs/Passes.html @@ -226,11 +226,8 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print " <p>\n" if ! <a name="basicaa">-basicaa: Basic Alias Analysis (stateless AA impl)</a> </h3> <div> - <p> - This is the default implementation of the Alias Analysis interface - that simply implements a few identities (two different globals cannot alias, - etc), but otherwise does no analysis. - </p> + <p>A basic alias analysis pass that implements identities (two different + globals cannot alias, etc), but does no stateful analysis.</p> </div> <!-------------------------------------------------------------------------- --> @@ -527,9 +524,10 @@ perl -e '$/ = undef; for (split(/\n/, <>)) { s:^ *///? ?::; print " <p>\n" if ! </h3> <div> <p> - Always returns "I don't know" for alias queries. NoAA is unlike other alias - analysis implementations, in that it does not chain to a previous analysis. As - such it doesn't follow many of the rules that other alias analyses must. + This is the default implementation of the Alias Analysis interface. It always + returns "I don't know" for alias queries. NoAA is unlike other alias analysis + implementations, in that it does not chain to a previous analysis. As such it + doesn't follow many of the rules that other alias analyses must. </p> </div> |

