From a7e302aadcc260d19694475b1a45c0deb3f271d6 Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Sun, 1 May 2005 22:22:57 +0000 Subject: [PATCH] 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 --- docs/LangRef.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/LangRef.html b/docs/LangRef.html index e03883945ac..1e6b3d7c2ac 100644 --- a/docs/LangRef.html +++ b/docs/LangRef.html @@ -2057,9 +2057,10 @@ calling an arbitrary pointer to function values.

  • 'function args': 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.

    + function signature argument types. All arguments must be of + first class type. If the function signature + indicates the function accepts a variable number of arguments, the extra + arguments can be specified.

  • Semantics: