diff options
author | Chris Lattner <sabre@nondot.org> | 2006-03-04 00:02:10 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2006-03-04 00:02:10 +0000 |
commit | f0afc2cda20799ccb8af0cca2dd0d3042ad6aa35 (patch) | |
tree | e56e1dbfc589eaefd23d5760f3ac0895fb975242 /docs | |
parent | b80af6f572394dda2ea4620da963878f403c2c59 (diff) | |
download | external_llvm-f0afc2cda20799ccb8af0cca2dd0d3042ad6aa35.zip external_llvm-f0afc2cda20799ccb8af0cca2dd0d3042ad6aa35.tar.gz external_llvm-f0afc2cda20799ccb8af0cca2dd0d3042ad6aa35.tar.bz2 |
Spec change: the size of a memset/memcpy/memmove is not required to be aligned
to the alignment argument.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@26510 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r-- | docs/LangRef.html | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html index d4b8328..a5f8767 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -3312,8 +3312,8 @@ of the source and destination locations. <p> If the call to this intrinisic has an alignment value that is not 0 or 1, then -the caller guarantees that the size of the copy is a multiple of the alignment -and that both the source and destination pointers are aligned to that boundary. +the caller guarantees that both the source and destination pointers are aligned +to that boundary. </p> <h5>Semantics:</h5> @@ -3367,8 +3367,8 @@ of the source and destination locations. <p> If the call to this intrinisic has an alignment value that is not 0 or 1, then -the caller guarantees that the size of the copy is a multiple of the alignment -and that both the source and destination pointers are aligned to that boundary. +the caller guarantees that the source and destination pointers are aligned to +that boundary. </p> <h5>Semantics:</h5> @@ -3421,8 +3421,7 @@ known alignment of destination location. <p> If the call to this intrinisic has an alignment value that is not 0 or 1, then -the caller guarantees that the size of the copy is a multiple of the alignment -and that the destination pointer is aligned to that boundary. +the caller guarantees that the destination pointer is aligned to that boundary. </p> <h5>Semantics:</h5> |