[llvm-commits] [llvm] r100611 - /llvm/trunk/docs/LangRef.html
Mon P Wang
wangmp at apple.com
Tue Apr 6 23:35:53 PDT 2010
Author: wangmp
Date: Wed Apr 7 01:35:53 2010
New Revision: 100611
URL: http://llvm.org/viewvc/llvm-project?rev=100611&view=rev
Log:
Update langref for memcpy, memmove, and memset
Modified:
llvm/trunk/docs/LangRef.html
Modified: llvm/trunk/docs/LangRef.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/LangRef.html?rev=100611&r1=100610&r2=100611&view=diff
==============================================================================
--- llvm/trunk/docs/LangRef.html (original)
+++ llvm/trunk/docs/LangRef.html Wed Apr 7 01:35:53 2010
@@ -5890,7 +5890,8 @@
<h5>Syntax:</h5>
<p>This is an overloaded intrinsic. You can use <tt>llvm.memcpy</tt> on any
- integer bit width. Not all targets support all bit widths however.</p>
+ integer bit width and for different address spaces. Not all targets support
+ all bit widths however.</p>
<pre>
declare void @llvm.memcpy.i8(i8 * <dest>, i8 * <src>,
@@ -5938,7 +5939,8 @@
<h5>Syntax:</h5>
<p>This is an overloaded intrinsic. You can use llvm.memmove on any integer bit
- width. Not all targets support all bit widths however.</p>
+ width and for different address space. Not all targets support all bit
+ widths however.</p>
<pre>
declare void @llvm.memmove.i8(i8 * <dest>, i8 * <src>,
@@ -5988,7 +5990,8 @@
<h5>Syntax:</h5>
<p>This is an overloaded intrinsic. You can use llvm.memset on any integer bit
- width. Not all targets support all bit widths however.</p>
+ width and for different address spaces. Not all targets support all bit
+ widths however.</p>
<pre>
declare void @llvm.memset.i8(i8 * <dest>, i8 <val>,
More information about the llvm-commits
mailing list