aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorNick Lewycky <nicholas@mxc.ca>2008-12-18 02:15:05 +0000
committerNick Lewycky <nicholas@mxc.ca>2008-12-18 02:15:05 +0000
commit78eb804068e2a3cba16b3d7cdd53992ebceb6834 (patch)
tree6f5f288063eac246c1b10c0defcd7155f90babec /docs
parent7224170f6a5b8a3c76f4adc5f84d650d142a27c4 (diff)
downloadexternal_llvm-78eb804068e2a3cba16b3d7cdd53992ebceb6834.zip
external_llvm-78eb804068e2a3cba16b3d7cdd53992ebceb6834.tar.gz
external_llvm-78eb804068e2a3cba16b3d7cdd53992ebceb6834.tar.bz2
Recommit this grammar fix that was backed out along with nocapture.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61189 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/AliasAnalysis.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/AliasAnalysis.html b/docs/AliasAnalysis.html
index 1569fb8..97a8133 100644
--- a/docs/AliasAnalysis.html
+++ b/docs/AliasAnalysis.html
@@ -192,11 +192,11 @@ and returns MustAlias, MayAlias, or NoAlias as appropriate.
<div class="doc_text">
<p>The NoAlias response is used when the two pointers refer to distinct objects,
-even regardless of whether the pointers compare equal. For example, freed
-pointers don't alias any pointers that were allocated afterwards. As a
-degenerate case, pointers returned by malloc(0) have no bytes for an object,
-and are considered NoAlias even when malloc returns the same pointer. The same
-rule applies to NULL pointers.</p>
+regardless of whether the pointers compare equal. For example, freed pointers
+don't alias any pointers that were allocated afterwards. As a degenerate case,
+pointers returned by malloc(0) have no bytes for an object, and are considered
+NoAlias even when malloc returns the same pointer. The same rule applies to
+NULL pointers.</p>
<p>The MayAlias response is used whenever the two pointers might refer to the
same object. If the two memory objects overlap, but do not start at the same