[llvm-branch-commits] [llvm-branch] r143681 - in /llvm/branches/release_30: ./ docs/Passes.html
Bill Wendling
isanbard at gmail.com
Thu Nov 3 23:30:51 PDT 2011
Author: void
Date: Fri Nov 4 01:30:50 2011
New Revision: 143681
URL: http://llvm.org/viewvc/llvm-project?rev=143681&view=rev
Log:
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.
------------------------------------------------------------------------
Modified:
llvm/branches/release_30/ (props changed)
llvm/branches/release_30/docs/Passes.html
Propchange: llvm/branches/release_30/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Fri Nov 4 01:30:50 2011
@@ -1,3 +1,3 @@
/llvm/branches/Apple/Pertwee:110850,110961
/llvm/branches/type-system-rewrite:133420-134817
-/llvm/trunk:142039,142055,142058,142112,142123,142125,142165,142168,142243,142350,142482,142486,142489,142491-142493,142537,142550,142559,142573-142574,142801,142806,142841,142869,142956,142994,142998,143006,143194,143222,143247,143290,143302-143303,143328,143348-143349,143437
+/llvm/trunk:142039,142055,142058,142112,142123,142125,142165,142168,142243,142350,142482,142486,142489,142491-142493,142537,142550,142559,142573-142574,142801,142806,142841,142869,142956,142994,142998,143006,143159,143194,143222,143247,143290,143302-143303,143328,143348-143349,143437
Modified: llvm/branches/release_30/docs/Passes.html
URL: http://llvm.org/viewvc/llvm-project/llvm/branches/release_30/docs/Passes.html?rev=143681&r1=143680&r2=143681&view=diff
==============================================================================
--- llvm/branches/release_30/docs/Passes.html (original)
+++ llvm/branches/release_30/docs/Passes.html Fri Nov 4 01:30:50 2011
@@ -226,11 +226,8 @@
<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 @@
</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>
More information about the llvm-branch-commits
mailing list