[llvm-commits] CVS: llvm/docs/LangRef.html

Chris Lattner lattner at cs.uiuc.edu
Fri Mar 3 16:02:22 PST 2006



Changes in directory llvm/docs:

LangRef.html updated: 1.137 -> 1.138
---
Log message:

Spec change: the size of a memset/memcpy/memmove is not required to be aligned
to the alignment argument.


---
Diffs of the changes:  (+6 -7)

 LangRef.html |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.137 llvm/docs/LangRef.html:1.138
--- llvm/docs/LangRef.html:1.137	Thu Mar  2 18:19:58 2006
+++ llvm/docs/LangRef.html	Fri Mar  3 18:02:10 2006
@@ -3312,8 +3312,8 @@
 
 <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 @@
 
 <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 @@
 
 <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>
@@ -3695,7 +3694,7 @@
 
   <a href="mailto:sabre at nondot.org">Chris Lattner</a><br>
   <a href="http://llvm.cs.uiuc.edu">The LLVM Compiler Infrastructure</a><br>
-  Last modified: $Date: 2006/03/03 00:19:58 $
+  Last modified: $Date: 2006/03/04 00:02:10 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list