Grammar cop pullover: Corrected and improved some grammar in the description of

the llvm.memset() intrinsic family.
No content changes.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@109863 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
John Criswell 2010-07-30 16:30:28 +00:00
parent 10757dd8e1
commit cdcbbfcb15

View File

@ -6119,8 +6119,8 @@ LLVM</a>.</p>
<h5>Syntax:</h5> <h5>Syntax:</h5>
<p>This is an overloaded intrinsic. You can use llvm.memset on any integer bit <p>This is an overloaded intrinsic. You can use llvm.memset on any integer bit
width and for different address spaces. Not all targets support all bit width and for different address spaces. However, not all targets support all
widths however.</p> bit widths.</p>
<pre> <pre>
declare void @llvm.memset.p0i8.i32(i8* &lt;dest&gt;, i8 &lt;val&gt;, declare void @llvm.memset.p0i8.i32(i8* &lt;dest&gt;, i8 &lt;val&gt;,
@ -6134,14 +6134,14 @@ LLVM</a>.</p>
particular byte value.</p> particular byte value.</p>
<p>Note that, unlike the standard libc function, the <tt>llvm.memset</tt> <p>Note that, unlike the standard libc function, the <tt>llvm.memset</tt>
intrinsic does not return a value, takes extra alignment/volatile arguments, intrinsic does not return a value and takes extra alignment/volatile
and the destination can be in an arbitrary address space.</p> arguments. Also, the destination can be in an arbitrary address space.</p>
<h5>Arguments:</h5> <h5>Arguments:</h5>
<p>The first argument is a pointer to the destination to fill, the second is the <p>The first argument is a pointer to the destination to fill, the second is the
byte value to fill it with, the third argument is an integer argument byte value with which to fill it, the third argument is an integer argument
specifying the number of bytes to fill, and the fourth argument is the known specifying the number of bytes to fill, and the fourth argument is the known
alignment of destination location.</p> alignment of the destination location.</p>
<p>If the call to this intrinsic has an alignment value that is not 0 or 1, <p>If the call to this intrinsic has an alignment value that is not 0 or 1,
then the caller guarantees that the destination pointer is aligned to that then the caller guarantees that the destination pointer is aligned to that