diff options
| author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-13 20:40:43 +0000 |
|---|---|---|
| committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-07-13 20:40:43 +0000 |
| commit | 9581e01c5a90b689f5d6af5378b5c1c7305b1688 (patch) | |
| tree | 7344925821f5f63d7da1217406a45dd134918cfd /gcc/cp/decl.c | |
| parent | cb3d02c0ed928b1c1a98a7df49274835eb4e6133 (diff) | |
| download | ppe42-gcc-9581e01c5a90b689f5d6af5378b5c1c7305b1688.tar.gz ppe42-gcc-9581e01c5a90b689f5d6af5378b5c1c7305b1688.zip | |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@43995 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cp/decl.c')
| -rw-r--r-- | gcc/cp/decl.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/cp/decl.c b/gcc/cp/decl.c index c0e9b85a471..bc157b37d68 100644 --- a/gcc/cp/decl.c +++ b/gcc/cp/decl.c @@ -7128,7 +7128,7 @@ start_decl (declarator, declspecs, initialized, attributes, prefix_attributes) int initialized; tree attributes, prefix_attributes; { - register tree decl; + tree decl; register tree type, tem; tree context; extern int have_extern_spec; @@ -7221,7 +7221,7 @@ start_decl (declarator, declspecs, initialized, attributes, prefix_attributes) } /* Set attributes here so if duplicate decl, will have proper attributes. */ - cplus_decl_attributes (decl, attributes, prefix_attributes); + cplus_decl_attributes (&decl, attributes, prefix_attributes, 0); if (context && COMPLETE_TYPE_P (complete_type (context))) { @@ -10471,7 +10471,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist) ignore_attrs = 0; else if (inner_attrs) { - decl_attributes (type, inner_attrs); + decl_attributes (&type, inner_attrs, 0); inner_attrs = NULL_TREE; } @@ -10990,7 +10990,7 @@ grokdeclarator (declarator, declspecs, decl_context, initialized, attrlist) if (inner_attrs) { if (! ignore_attrs) - decl_attributes (type, inner_attrs); + decl_attributes (&type, inner_attrs, 0); else if (attrlist) TREE_VALUE (attrlist) = chainon (inner_attrs, TREE_VALUE (attrlist)); else @@ -13639,7 +13639,7 @@ start_function (declspecs, declarator, attrs, flags) pushlevel (0); current_binding_level->parm_flag = 1; - cplus_decl_attributes (decl1, NULL_TREE, attrs); + cplus_decl_attributes (&decl1, NULL_TREE, attrs, 0); /* Promote the value to int before returning it. */ if (c_promoting_integer_type_p (restype)) |

