Skip to content

Commit 508127b

Browse files
author
Mon P Wang
committed
Update langref for memcpy, memmove, and memset
llvm-svn: 100611
1 parent 5ed6792 commit 508127b

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

llvm/docs/LangRef.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5890,7 +5890,8 @@ <h5>Semantics:</h5>
58905890

58915891
<h5>Syntax:</h5>
58925892
<p>This is an overloaded intrinsic. You can use <tt>llvm.memcpy</tt> on any
5893-
integer bit width. Not all targets support all bit widths however.</p>
5893+
integer bit width and for different address spaces. Not all targets support
5894+
all bit widths however.</p>
58945895

58955896
<pre>
58965897
declare void @llvm.memcpy.i8(i8 * &lt;dest&gt;, i8 * &lt;src&gt;,
@@ -5938,7 +5939,8 @@ <h5>Semantics:</h5>
59385939

59395940
<h5>Syntax:</h5>
59405941
<p>This is an overloaded intrinsic. You can use llvm.memmove on any integer bit
5941-
width. Not all targets support all bit widths however.</p>
5942+
width and for different address space. Not all targets support all bit
5943+
widths however.</p>
59425944

59435945
<pre>
59445946
declare void @llvm.memmove.i8(i8 * &lt;dest&gt;, i8 * &lt;src&gt;,
@@ -5988,7 +5990,8 @@ <h5>Semantics:</h5>
59885990

59895991
<h5>Syntax:</h5>
59905992
<p>This is an overloaded intrinsic. You can use llvm.memset on any integer bit
5991-
width. Not all targets support all bit widths however.</p>
5993+
width and for different address spaces. Not all targets support all bit
5994+
widths however.</p>
59925995

59935996
<pre>
59945997
declare void @llvm.memset.i8(i8 * &lt;dest&gt;, i8 &lt;val&gt;,

0 commit comments

Comments
 (0)