c-common.c (decl_attributes): Take a pointer to the node to which attributes are...
authorJoseph Myers <jsm28@cam.ac.uk>
Fri, 13 Jul 2001 20:40:43 +0000 (21:40 +0100)
committerJoseph Myers <jsm28@gcc.gnu.org>
Fri, 13 Jul 2001 20:40:43 +0000 (21:40 +0100)
commit59387d2e310983bced3bf86cb759a1dbc1520277
tree7344925821f5f63d7da1217406a45dd134918cfd
parente47c5acd7b2c5dcaf4ece03897e9baa12e867cf9
c-common.c (decl_attributes): Take a pointer to the node to which attributes are to be attached...

* c-common.c (decl_attributes): Take a pointer to the node to
which attributes are to be attached, and a flags argument.
* c-common.h (enum attribute_flags): New.
(decl_attributes): Update prototype.
* c-decl.c (start_decl, push_parm_decl, finish_struct,
finish_enum, start_function): Update calls to decl_attributes.
* c-parse.in (component_declarator, component_notype_declarator,
label): Update calls to decl_attributes.

cp:
* decl2.c (cplus_decl_attributes): Take a pointer to the node to
which attributes are to be attached, and a flags argument.  Update
call to decl_attributes.
(grokfield): Update call to decl_attributes.
* class.c (finish_struct): Update call to cplus_decl_attributes.
* cp-tree.h (cplus_decl_attributes): Update prototype.
* decl.c (start_decl, grokdeclarator, start_function): Update
calls to decl_attributes and cplus_decl_attributes.
* friend.c (do_friend): Update call to cplus_decl_attributes.
* parse.y (parse_bitfield): Update call to cplus_decl_attributes.

From-SVN: r43995
12 files changed:
gcc/ChangeLog
gcc/c-common.c
gcc/c-common.h
gcc/c-decl.c
gcc/c-parse.in
gcc/cp/ChangeLog
gcc/cp/class.c
gcc/cp/cp-tree.h
gcc/cp/decl.c
gcc/cp/decl2.c
gcc/cp/friend.c
gcc/cp/parse.y