diff options
| author | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-22 13:59:01 +0000 |
|---|---|---|
| committer | kenner <kenner@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-09-22 13:59:01 +0000 |
| commit | 598d02af424d12a62521c938d77ed558423b6fdb (patch) | |
| tree | efda336678d3030acf1949bdee33cb6a1945121a | |
| parent | 81d73dc740f695263261fee1cc797dfc6248ec72 (diff) | |
| download | ppe42-gcc-598d02af424d12a62521c938d77ed558423b6fdb.tar.gz ppe42-gcc-598d02af424d12a62521c938d77ed558423b6fdb.zip | |
* 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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@45753 138bc75d-0d04-0410-961f-82ee72b054a4
| -rw-r--r-- | gcc/Makefile.in | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gcc/Makefile.in b/gcc/Makefile.in index ddde078f723..6daa0ab012c 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -722,7 +722,7 @@ C_TARGET_OBJS=@c_target_objs@ CXX_TARGET_OBJS=@cxx_target_objs@ # Language-specific object files for C and Objective C. -C_AND_OBJC_OBJS = c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o \ +C_AND_OBJC_OBJS = attribs.o c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o \ c-convert.o c-aux-info.o c-common.o c-format.o c-semantics.o c-dump.o \ libcpp.a $(C_TARGET_OBJS) @@ -1250,6 +1250,12 @@ c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) \ $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \ $(EXPR_H) $(TM_P_H) builtin-types.def $(TARGET_H) +# A file used by all variants of C and some other languages. + +attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) flags.h \ + toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \ + builtin-types.def $(TARGET_H) + c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ $(C_COMMON_H) flags.h toplev.h intl.h diagnostic.h |

