diff options
author | Bill Wendling <isanbard@gmail.com> | 2011-11-04 06:30:50 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2011-11-04 06:30:50 +0000 |
commit | 4866cedb43133340a1ced1762100e08355bbdffa (patch) | |
tree | 40823dbcc338a0696a0d05cd5725c601c0984a4a | |
parent | b87d985ebf65e4ae530be68ec0fd9df774f250c3 (diff) |
Merging r143159:
------------------------------------------------------------------------
r143159 | efriedma | 2011-10-27 15:32:13 -0700 (Thu, 27 Oct 2011) | 3 lines
The default alias analysis is -noaa; update the docs to reflect that. Patch by Michael Ilseman.
------------------------------------------------------------------------
git-svn-id: https://llvm.org/svn/llvm-project/llvm/branches/release_30@143681 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/Passes.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/docs/Passes.html b/docs/Passes.html index 9393410a36..5c42f3fdd5 100644 --- a/docs/Passes.html +++ b/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> |