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

Andrew Lenharth alenhar2 at cs.uiuc.edu
Wed Jun 22 13:38:23 PDT 2005



Changes in directory llvm/docs:

LangRef.html updated: 1.109 -> 1.110
---
Log message:

SelectionDAG is very unhappy when the argument to an intrinsic is a struct

---
Diffs of the changes:  (+4 -5)

 LangRef.html |    9 ++++-----
 1 files changed, 4 insertions(+), 5 deletions(-)


Index: llvm/docs/LangRef.html
diff -u llvm/docs/LangRef.html:1.109 llvm/docs/LangRef.html:1.110
--- llvm/docs/LangRef.html:1.109	Sat Jun 18 13:28:17 2005
+++ llvm/docs/LangRef.html	Wed Jun 22 15:38:11 2005
@@ -2317,8 +2317,7 @@
 
   ; Demonstrate usage of llvm.va_copy and llvm.va_end
   %aq = alloca sbyte*
-  %apv = load sbyte** %ap
-  call void %<a href="#i_va_copy">llvm.va_copy</a>(sbyte** %aq, sbyte* %apv)
+  call void %<a href="#i_va_copy">llvm.va_copy</a>(sbyte** %aq, sbyte** %ap)
   call void %<a href="#i_va_end">llvm.va_end</a>(sbyte** %aq)
 
   ; Stop processing of arguments.
@@ -2390,7 +2389,7 @@
 
 <pre>
   declare void %llvm.va_copy(<va_list>* <destarglist>,
-                                          <va_list> <srcarglist>)
+                                          <va_list>* <srcarglist>)
 </pre>
 
 <h5>Overview:</h5>
@@ -2401,7 +2400,7 @@
 <h5>Arguments:</h5>
 
 <p>The first argument is a pointer to a <tt>va_list</tt> element to initialize.
-The second argument is a <tt>va_list</tt> element to copy from.</p>
+The second argument is a pointer to a <tt>va_list</tt> element to copy from.</p>
 
 
 <h5>Semantics:</h5>
@@ -3262,7 +3261,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/06/18 18:28:17 $
+  Last modified: $Date: 2005/06/22 20:38:11 $
 </address>
 </body>
 </html>






More information about the llvm-commits mailing list