diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-14 08:27:01 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2007-02-14 08:27:01 +0000 |
commit | 24ede95f1569a5d46abefe34afccb9167853c575 (patch) | |
tree | b8f1a43e05f2676ee1faee2f91bfa894006971e8 /gcc | |
parent | c926c35fbf7ebd0b1de55fe736602afd77f92190 (diff) | |
download | gcc-24ede95f1569a5d46abefe34afccb9167853c575.tar.gz |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@121946 138bc75d-0d04-0410-961f-82ee72b054a4
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 b3440c242eb..f66f73c7a4f 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 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: |