Commit 63622a81 by Steve Ellcey Committed by Steve Ellcey

re PR bootstrap/25961 (Mainline failed to bootstrap on ia64)

	PR target/25961
	* Makefile.in (insn-automata.o): Add header file dependencies.
	* genautomata.c: Add includes.

From-SVN: r110274
parent 461d30b2
2006-01-26 Steve Ellcey <sje@cup.hp.com> 2006-01-26 Steve Ellcey <sje@cup.hp.com>
PR target/25961 PR target/25961
* Makefile.in (insn-automata.o): Add header file dependencies.
* genautomata.c: Add includes.
2006-01-26 Steve Ellcey <sje@cup.hp.com>
PR target/25961
* Makefile.in (insn-automata.o): Add -Wno-error flag. * Makefile.in (insn-automata.o): Add -Wno-error flag.
2006-01-26 Paolo Bonzini <bonzini@gnu.org> 2006-01-26 Paolo Bonzini <bonzini@gnu.org>
......
...@@ -2641,7 +2641,8 @@ insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ ...@@ -2641,7 +2641,8 @@ insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
$(TM_H) $(RTL_H) $(REGS_H) real.h output.h $(INSN_ATTR_H) \ $(TM_H) $(RTL_H) $(REGS_H) real.h output.h $(INSN_ATTR_H) \
insn-config.h toplev.h $(RECOG_H) $(TM_P_H) $(FLAGS_H) insn-config.h toplev.h $(RECOG_H) $(TM_P_H) $(FLAGS_H)
insn-automata.o : insn-automata.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ insn-automata.o : insn-automata.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
$(TM_H) $(RTL_H) $(INSN_ATTR_H) $(TM_H) $(RTL_H) $(REGS_H) real.h output.h $(INSN_ATTR_H) \
insn-config.h toplev.h $(RECOG_H) $(TM_P_H) $(FLAGS_H)
insn-emit.o : insn-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ insn-emit.o : insn-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
$(RTL_H) $(EXPR_H) real.h output.h insn-config.h $(OPTABS_H) \ $(RTL_H) $(EXPR_H) real.h output.h insn-config.h $(OPTABS_H) \
reload.h $(RECOG_H) toplev.h $(FUNCTION_H) $(FLAGS_H) hard-reg-set.h \ reload.h $(RECOG_H) toplev.h $(FUNCTION_H) $(FLAGS_H) hard-reg-set.h \
......
...@@ -9255,7 +9255,16 @@ main (int argc, char **argv) ...@@ -9255,7 +9255,16 @@ main (int argc, char **argv)
"#include \"coretypes.h\"\n" "#include \"coretypes.h\"\n"
"#include \"tm.h\"\n" "#include \"tm.h\"\n"
"#include \"rtl.h\"\n" "#include \"rtl.h\"\n"
"#include \"insn-attr.h\"\n"); "#include \"tm_p.h\"\n"
"#include \"insn-config.h\"\n"
"#include \"recog.h\"\n"
"#include \"regs.h\"\n"
"#include \"real.h\"\n"
"#include \"output.h\"\n"
"#include \"insn-attr.h\"\n"
"#include \"toplev.h\"\n"
"#include \"flags.h\"\n"
"#include \"function.h\"\n");
if (VEC_length (decl_t, decls) > 0) if (VEC_length (decl_t, decls) > 0)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment