diff options
| author | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-22 20:38:11 +0000 |
|---|---|---|
| committer | Andrew Lenharth <andrewl@lenharth.org> | 2005-06-22 20:38:11 +0000 |
| commit | 5305ea5c86345414a14db97d9dfc8775dfc80e1f (patch) | |
| tree | 4800b843b4d20ecccbbbedc72c7024edb571cdf2 /llvm/docs | |
| parent | cf9008afea90504949f48f1375aebb7190fc86fd (diff) | |
| download | bcm5719-llvm-5305ea5c86345414a14db97d9dfc8775dfc80e1f.tar.gz bcm5719-llvm-5305ea5c86345414a14db97d9dfc8775dfc80e1f.zip | |
SelectionDAG is very unhappy when the argument to an intrinsic is a struct
llvm-svn: 22272
Diffstat (limited to 'llvm/docs')
| -rw-r--r-- | llvm/docs/LangRef.html | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/llvm/docs/LangRef.html b/llvm/docs/LangRef.html index f5406f5f928..3fac48d5c31 100644 --- a/llvm/docs/LangRef.html +++ b/llvm/docs/LangRef.html @@ -2317,8 +2317,7 @@ int %test(int %X, ...) { ; 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 @@ with calls to <tt>llvm.va_end</tt>.</p> <pre> declare void %llvm.va_copy(<va_list>* <destarglist>, - <va_list> <srcarglist>) + <va_list>* <srcarglist>) </pre> <h5>Overview:</h5> @@ -2401,7 +2400,7 @@ the source argument list to the destination argument list.</p> <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> |

