diff options
author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-22 13:14:40 +0000 |
---|---|---|
committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-22 13:14:40 +0000 |
commit | e3f6ce11a5d61c1b8f636199ab69cae6c4ee3bae (patch) | |
tree | 00bc4e0b093a48235bf0c46b6102755bcd06cba0 /gcc/tree.h | |
parent | 90b1355d457745b69069ff403d4a4927f72aa8f4 (diff) | |
download | gcc-e3f6ce11a5d61c1b8f636199ab69cae6c4ee3bae.tar.gz |
* attribs.c: New file, from c-common.c.
(attribute_tables): Now four elements.
(format_attribute_table, lang_attribute_common): New variables.
(init_attributes): Reflect above changes.
(handle_mode_attribute): Delete check for wider than uintmax.
* c-common.c: Delete parts moved to attribs.c.
(enum attrs): Deleted; unused.
(c_format_attribute_table): New variable.
(c_common_lang_init): Initialize format_attribute_table with it.
* c-common.h (decl_attributes): Remove decl.
* tree.h (decl_attribute): Move it to here.
* Makefile.in (C_AND_OBJS_OBJS): Add attribs.o.
(attribs.o): New rule.
* ch/Make-lang.in (cc1chill): Add attribs.o.
* cp/Make-lang.in (CXX_C_OBJS): Add attribs.o.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45749 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h index fe94fa6905a..8bec94f7ced 100644 --- a/gcc/tree.h +++ b/gcc/tree.h @@ -2906,6 +2906,9 @@ extern rtx emit_line_note PARAMS ((const char *, int)); extern int setjmp_call_p PARAMS ((tree)); +/* In attribs.c. */ +extern tree decl_attributes PARAMS ((tree *, tree, int)); + /* In front end. */ extern int mark_addressable PARAMS ((tree)); |