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

Reid Spencer reid at x10sys.com
Tue Apr 26 13:41:27 PDT 2005



Changes in directory llvm/docs:

LangRef.html updated: 1.93 -> 1.94
---
Log message:

Use the declare syntax not the call syntax for intrinsic prototypes so
the uninitiated reader is not confused.


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

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


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.93 llvm/docs/LangRef.html:1.94
--- llvm/docs/LangRef.html:1.93	Mon Apr 25 12:34:15 2005
+++ llvm/docs/LangRef.html	Tue Apr 26 15:41:16 2005
@@ -2848,8 +2848,8 @@
 
 <h5>Syntax:</h5>
 <pre>
-  call void (sbyte*, sbyte*, uint, uint)* %llvm.memcpy(sbyte* <dest>, sbyte* <src>,
-                                                       uint <len>, uint <align>)
+  declare void %llvm.memcpy(sbyte* <dest>, sbyte* <src>,
+                            uint <len>, uint <align>)
 </pre>
 
 <h5>Overview:</h5>
@@ -2900,8 +2900,8 @@
 
 <h5>Syntax:</h5>
 <pre>
-  call void (sbyte*, sbyte*, uint, uint)* %llvm.memmove(sbyte* <dest>, sbyte* <src>,
-                                                       uint <len>, uint <align>)
+  declare void %llvm.memmove(sbyte* <dest>, sbyte* <src>,
+                             uint <len>, uint <align>)
 </pre>
 
 <h5>Overview:</h5>
@@ -2953,8 +2953,8 @@
 
 <h5>Syntax:</h5>
 <pre>
-  call void (sbyte*, ubyte, uint, uint)* %llvm.memset(sbyte* <dest>, ubyte <val>,
-                                                      uint <len>, uint <align>)
+  declare void %llvm.memset(sbyte* <dest>, ubyte <val>,
+                            uint <len>, uint <align>)
 </pre>
 
 <h5>Overview:</h5>
@@ -3057,7 +3057,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: 2005/04/25 17:34:15 $
+  Last modified: $Date: 2005/04/26 20:41:16 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list