This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: NLS vs. rtl.c


On Thu, Jun 29, 2000 at 12:32:36PM +0200, Philipp Thomas wrote:
> 
> 	* rtl.c : Revert NLS changes.
> 	* gcc.c : Fix bug in display_help introced by my last changes.

I need these patches on top of the above in order to bootstrap.  What
host triple are you using?

zw

	* c-decl.c, timevar.c, tlink.c: Include intl.h.
	* Makefile.in: Update deps.

===================================================================
Index: Makefile.in
--- Makefile.in	2000/06/22 21:01:04	1.470
+++ Makefile.in	2000/06/29 16:04:27
@@ -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) syst
 	-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 to
 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
===================================================================
Index: c-decl.c
--- c-decl.c	2000/06/28 23:46:27	1.124
+++ c-decl.c	2000/06/29 16:04:30
@@ -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"
===================================================================
Index: timevar.c
--- timevar.c	2000/06/28 23:46:27	1.7
+++ timevar.c	2000/06/29 16:04:30
@@ -21,6 +21,7 @@
 
 #include "config.h"
 #include "system.h"
+#include "intl.h"
 
 #ifdef HAVE_SYS_TIMES_H
 # include <sys/times.h>
===================================================================
Index: tlink.c
--- tlink.c	2000/06/28 23:46:27	1.29
+++ tlink.c	2000/06/29 16:04:30
@@ -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"

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]