diff options
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 6 | ||||
-rw-r--r-- | gcc/c-decl.c | 1 | ||||
-rw-r--r-- | gcc/timevar.c | 1 | ||||
-rw-r--r-- | gcc/tlink.c | 1 |
5 files changed, 11 insertions, 3 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 8b5487e..8be2212 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2000-06-29 Zack Weinberg <zack@wolery.cumb.org> + + * c-decl.c, timevar.c, tlink.c: Include intl.h. + * Makefile.in: Update deps. + 2000-06-29 Andrew Haley <aph@cygnus.com> * toplev.c (main): On an IA-64, make flag_unwind_tables defauit diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 56a3078..44d1868 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1090,7 +1090,7 @@ $(srcdir)/c-gperf.h: c-parse.gperf c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \ c-common.h $(GGC_H) c-lex.h flags.h function.h output.h $(EXPR_H) \ - toplev.h defaults.h + toplev.h defaults.h intl.h c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \ flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \ @@ -1123,7 +1123,7 @@ collect2.o : collect2.c $(CONFIG_H) system.h gstab.h intl.h \ -DTARGET_MACHINE=\"$(target_alias)\" $(MAYBE_USE_COLLECT2) \ -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'` -tlink.o: tlink.c $(DEMANGLE_H) hash.h $(CONFIG_H) system.h collect2.h +tlink.o: tlink.c $(DEMANGLE_H) hash.h $(CONFIG_H) system.h collect2.h intl.h hash.o: hash.c hash.h system.h toplev.h vfprintf.o: $(srcdir)/../libiberty/vfprintf.c $(CONFIG_H) system.h @@ -1387,7 +1387,7 @@ lists.o: lists.c $(CONFIG_H) system.h toplev.h $(RTL_H) $(GGC_H) bb-reorder.o : bb-reorder.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \ insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \ $(RECOG_H) insn-flags.h function.h except.h $(EXPR_H) -timevar.o : timevar.c $(CONFIG_H) system.h $(TIMEVAR_H) flags.h +timevar.o : timevar.c $(CONFIG_H) system.h $(TIMEVAR_H) flags.h intl.h regrename.o : regrename.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \ insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h \ $(RECOG_H) function.h resource.h diff --git a/gcc/c-decl.c b/gcc/c-decl.c index fea89c7..21f71f8 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -29,6 +29,7 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #include "system.h" +#include "intl.h" #include "tree.h" #include "rtl.h" #include "flags.h" diff --git a/gcc/timevar.c b/gcc/timevar.c index 44526cb..089fae0 100644 --- a/gcc/timevar.c +++ b/gcc/timevar.c @@ -21,6 +21,7 @@ #include "config.h" #include "system.h" +#include "intl.h" #ifdef HAVE_SYS_TIMES_H # include <sys/times.h> diff --git a/gcc/tlink.c b/gcc/tlink.c index cafa0c6..bfa637e 100644 --- a/gcc/tlink.c +++ b/gcc/tlink.c @@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA. */ #include "config.h" #include "system.h" +#include "intl.h" #include "hash.h" #include "demangle.h" #include "collect2.h" |