diff options
author | Richard Kenner <kenner@vlsi1.ultra.nyu.edu> | 2001-09-22 13:14:40 +0000 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 2001-09-22 09:14:40 -0400 |
commit | bb9f8221b43c3a500198fa3a504fa11f5f807988 (patch) | |
tree | 00bc4e0b093a48235bf0c46b6102755bcd06cba0 /gcc/tree.h | |
parent | ab6e6969342d2aa3a7e59eb092767e80bd7852a4 (diff) | |
download | gcc-bb9f8221b43c3a500198fa3a504fa11f5f807988.zip gcc-bb9f8221b43c3a500198fa3a504fa11f5f807988.tar.gz gcc-bb9f8221b43c3a500198fa3a504fa11f5f807988.tar.bz2 |
attribs.c: New file, from c-common.c.
* 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.
From-SVN: r45749
Diffstat (limited to 'gcc/tree.h')
-rw-r--r-- | gcc/tree.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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)); |