aboutsummaryrefslogtreecommitdiffstats
path: root/docs/LangRef.html
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-05-01 22:22:57 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-05-01 22:22:57 +0000
commita7e302aadcc260d19694475b1a45c0deb3f271d6 (patch)
tree937460f16da876653fc277c9d64db840c763402c /docs/LangRef.html
parent21d6ff546d0c9cd1a631fe7940a3988a2472198c (diff)
downloadexternal_llvm-a7e302aadcc260d19694475b1a45c0deb3f271d6.zip
external_llvm-a7e302aadcc260d19694475b1a45c0deb3f271d6.tar.gz
external_llvm-a7e302aadcc260d19694475b1a45c0deb3f271d6.tar.bz2
Mention that arguments to functions must be first class types.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21650 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LangRef.html')
-rw-r--r--docs/LangRef.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/docs/LangRef.html b/docs/LangRef.html
index e038839..1e6b3d7 100644
--- a/docs/LangRef.html
+++ b/docs/LangRef.html
@@ -2057,9 +2057,10 @@ calling an arbitrary pointer to function values.</p>
</li>
<li>
<p>'<tt>function args</tt>': argument list whose types match the
-function signature argument types. If the function signature
-indicates the function accepts a variable number of arguments, the
-extra arguments can be specified.</p>
+ function signature argument types. All arguments must be of
+ <a href="#t_firstclass">first class</a> type. If the function signature
+ indicates the function accepts a variable number of arguments, the extra
+ arguments can be specified.</p>
</li>
</ol>
<h5>Semantics:</h5>