diff options
| -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: |
