diff options
author | Neil Booth <neil@daikokuya.demon.co.uk> | 2002-03-27 23:16:17 +0000 |
---|---|---|
committer | Neil Booth <neil@gcc.gnu.org> | 2002-03-27 23:16:17 +0000 |
commit | 7ffb4fd2da169e19ace71babd1916e2ec6e6eae2 (patch) | |
tree | 27099856cce240c3bcd83ede60b64841aa5a0aa9 /gcc/c-decl.c | |
parent | 39bea3744da85789d5587e490c8530b1af2eef15 (diff) | |
download | gcc-7ffb4fd2da169e19ace71babd1916e2ec6e6eae2.zip gcc-7ffb4fd2da169e19ace71babd1916e2ec6e6eae2.tar.gz gcc-7ffb4fd2da169e19ace71babd1916e2ec6e6eae2.tar.bz2 |
Makefile.in (attribs.o): Update.
* Makefile.in (attribs.o): Update.
* attribs.c: Include langhooks.h.
(decl_attributes): Use langhook.
* c-decl.c (insert_default_attributes): Rename.
* c-tree.h (c_insert_default_attributes): New.
* langhooks-def.h (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES):New.
(LANG_HOOKS_INITIALIZER): Update.
* langhooks.h (struct lang_hooks): New hook.
* tree.h (insert_default_attributes): Remove.
ada:
* misc.c (insert_default_attributes): Remove.
cp:
* cp-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
* cp-tree.h (cxx_insert_default_attributes): New.
* decl.c (insert_default_attributes): Rename.
objc:
* objc-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
From-SVN: r51488
Diffstat (limited to 'gcc/c-decl.c')
-rw-r--r-- | gcc/c-decl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/c-decl.c b/gcc/c-decl.c index e1d104d..620a16f 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -3087,7 +3087,7 @@ builtin_function (name, type, function_code, class, library_name) attributes. */ void -insert_default_attributes (decl) +c_insert_default_attributes (decl) tree decl; { if (!TREE_PUBLIC (decl)) |