diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-03 12:29:37 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-03 05:29:37 -0700 |
commit | e9eaed43b9308d4da24ffde5b108a2962da959d4 (patch) | |
tree | ab043494f2095bcd4cc8c332a96c9c063392c9f3 | |
parent | 1f3b6a3ebeec51efe379514c89a412119ef19f82 (diff) | |
download | gcc-e9eaed43b9308d4da24ffde5b108a2962da959d4.zip gcc-e9eaed43b9308d4da24ffde5b108a2962da959d4.tar.gz gcc-e9eaed43b9308d4da24ffde5b108a2962da959d4.tar.bz2 |
* Makefile.in (insn*.o): Depend on system.h.
From-SVN: r18976
-rw-r--r-- | gcc/ChangeLog | 2 | ||||
-rw-r--r-- | gcc/Makefile.in | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 3d74cff..193a623 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,7 @@ Fri Apr 3 00:17:01 1998 Jeffrey A Law (law@cygnus.com) + * Makefile.in (insn*.o): Depend on system.h. + * pa.c (output_global_address): Initialize base. * pa.h (GO_IF_LEGITIMATE_ADDRESS): Initialize index. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index 34044b5..902c9a0 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -1507,7 +1507,7 @@ stamp-codes : $(md_file) gencodes $(srcdir)/move-if-change touch stamp-codes insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \ - insn-config.h insn-flags.h insn-codes.h + insn-config.h insn-flags.h insn-codes.h system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c insn-emit.c: stamp-emit ; @true @@ -1517,7 +1517,7 @@ stamp-emit : $(md_file) genemit $(srcdir)/move-if-change touch stamp-emit insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \ - real.h output.h flags.h + real.h output.h flags.h system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c insn-recog.c: stamp-recog ; @true @@ -1527,7 +1527,7 @@ stamp-recog : $(md_file) genrecog $(srcdir)/move-if-change touch stamp-recog insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \ - insn-config.h flags.h $(RECOG_H) expr.h reload.h + insn-config.h flags.h $(RECOG_H) expr.h reload.h system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c insn-opinit.c: stamp-opinit ; @true @@ -1536,7 +1536,7 @@ stamp-opinit : $(md_file) genopinit $(srcdir)/move-if-change $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c touch stamp-opinit -insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H) +insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H) system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c insn-extract.c: stamp-extract ; @true @@ -1545,7 +1545,7 @@ stamp-extract : $(md_file) genextract $(srcdir)/move-if-change $(srcdir)/move-if-change tmp-extract.c insn-extract.c touch stamp-extract -insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h +insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c insn-peep.c: stamp-peep ; @true @@ -1555,7 +1555,7 @@ stamp-peep : $(md_file) genpeep $(srcdir)/move-if-change touch stamp-peep insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \ - insn-attr.h insn-config.h + insn-attr.h insn-config.h system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c insn-attr.h: stamp-attr ; @true @@ -1578,7 +1578,7 @@ stamp-attrtab : $(md_file) genattrtab $(srcdir)/move-if-change insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \ hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h $(RECOG_H) \ - insn-codes.h + insn-codes.h system.h $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c insn-output.c: stamp-output ; @true |