diff options
author | Nick Clifton <nickc@redhat.com> | 2007-02-14 08:27:01 +0000 |
---|---|---|
committer | Nick Clifton <nickc@gcc.gnu.org> | 2007-02-14 08:27:01 +0000 |
commit | 8225879cc7662cc31a278720cca63633ed9e6471 (patch) | |
tree | b8f1a43e05f2676ee1faee2f91bfa894006971e8 /gcc | |
parent | 5ce02e408d349c57b58d0906401dbd0d13c2f44a (diff) | |
download | gcc-8225879cc7662cc31a278720cca63633ed9e6471.zip gcc-8225879cc7662cc31a278720cca63633ed9e6471.tar.gz gcc-8225879cc7662cc31a278720cca63633ed9e6471.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 6 | ||||
-rw-r--r-- | gcc/builtin-types.def | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index b3440c2..f66f73c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,9 @@ +2007-02-14 Nick Clifton <nickc@redhat.com> + + * 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 <seongbae.park@gmail.com> * bitmap.c (bitmap_and, bitmap_and_compl, bitmap_xor): diff --git a/gcc/builtin-types.def b/gcc/builtin-types.def index ea0ff8e..e16fd7a 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: |