From c41ea880a02cec6d6d0e7426b4129b988239c87e Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 12 Feb 2004 21:18:15 +0000 Subject: [PATCH] Be a bit more specific about what the alignment value means and the restrictions on it llvm-svn: 11360 --- docs/LangRef.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/LangRef.html b/docs/LangRef.html index 20436ede7e2..33afe7e7e3b 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -1779,6 +1779,12 @@ specifying the number of bytes to copy, and the fourth argument is the alignment of the source and destination locations.

+

+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. +

+
Semantics:

@@ -1826,6 +1832,12 @@ specifying the number of bytes to copy, and the fourth argument is the alignment of the source and destination locations.

+

+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. +

+
Semantics: