diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-12-18 02:15:05 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-12-18 02:15:05 +0000 |
commit | 9c7379d07752daa1a196ceae6e436ee3b046803c (patch) | |
tree | 0df4c4c1a4e0ac67e01ede8de8b9116a91e126a3 /llvm | |
parent | 0cb00d66eab14719baa8a45d078ec0044d2bd240 (diff) | |
download | bcm5719-llvm-9c7379d07752daa1a196ceae6e436ee3b046803c.tar.gz bcm5719-llvm-9c7379d07752daa1a196ceae6e436ee3b046803c.zip |
Recommit this grammar fix that was backed out along with nocapture.
llvm-svn: 61189
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/AliasAnalysis.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/docs/AliasAnalysis.html b/llvm/docs/AliasAnalysis.html index 1569fb8e688..97a813344d8 100644 --- a/llvm/docs/AliasAnalysis.html +++ b/llvm/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 |