From 8225879cc7662cc31a278720cca63633ed9e6471 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Wed, 14 Feb 2007 08:27:01 +0000 Subject: [PATCH] builtin-types.def (DEF_FUNCTION_TYPE_x): Do not imply that at most 3 arguments are supported. * builtin-types.def (DEF_FUNCTION_TYPE_x): Do not imply that at most 3 arguments are supported. (DEF_FUNCTION_TYPE_VAR_5): Fix typo in its description. From-SVN: r121946 --- gcc/ChangeLog | 6 ++++++ gcc/builtin-types.def | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3440c242eb..f66f73c7a4f 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2007-02-14 Nick Clifton + + * builtin-types.def (DEF_FUNCTION_TYPE_x): Do not imply that at + most 3 arguments are supported. + (DEF_FUNCTION_TYPE_VAR_5): Fix typo in its description. + 2007-02-13 Seongbae Park * bitmap.c (bitmap_and, bitmap_and_compl, bitmap_xor): diff --git a/gcc/builtin-types.def b/gcc/builtin-types.def index ea0ff8e915e..e16fd7ab18c 100644 --- a/gcc/builtin-types.def +++ b/gcc/builtin-types.def @@ -39,14 +39,14 @@ Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA These macros describe function types. ENUM is as above. The RETURN type is one of the enumerals already defined. ARG1, ARG2, - and ARG3 give the types of the arguments, similarly. + etc, give the types of the arguments, similarly. DEF_FUNCTION_TYPE_VAR_0 (ENUM, RETURN) DEF_FUNCTION_TYPE_VAR_1 (ENUM, RETURN, ARG1) DEF_FUNCTION_TYPE_VAR_2 (ENUM, RETURN, ARG1, ARG2) DEF_FUNCTION_TYPE_VAR_3 (ENUM, RETURN, ARG1, ARG2, ARG3) DEF_FUNCTION_TYPE_VAR_4 (ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) - DEF_FUNCTION_TYPE_VAR_4 (ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) + DEF_FUNCTION_TYPE_VAR_5 (ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) Similar, but for function types that take variable arguments. For example: