Commit c15fed76 by Jan Hubicka Committed by Jan Hubicka

Makefile.in (insn-emit.o): Add basic-block.h dependency.


	* Makefile.in (insn-emit.o): Add basic-block.h dependency.
	* genemit.c (main): Make insn-emit to include basic-block.h too.

From-SVN: r100028
parent 0d25c320
2005-05-20 Jan Hubicka <jh@suse.cz> 2005-05-20 Jan Hubicka <jh@suse.cz>
* Makefile.in (insn-emit.o): Add basic-block.h dependency.
* genemit.c (main): Make insn-emit to include basic-block.h too.
2005-05-20 Jan Hubicka <jh@suse.cz>
* cgraphunit.c (cgraph_expand_function): Force function being lowered. * cgraphunit.c (cgraph_expand_function): Force function being lowered.
2005-05-19 Richard Henderson <rth@redhat.com> 2005-05-19 Richard Henderson <rth@redhat.com>
......
...@@ -2452,7 +2452,8 @@ s-constants : $(MD_DEPS) build/genconstants$(build_exeext) ...@@ -2452,7 +2452,8 @@ s-constants : $(MD_DEPS) build/genconstants$(build_exeext)
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) reload.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 $(RESOURCE_H) $(TM_P_H) $(RECOG_H) toplev.h function.h $(FLAGS_H) hard-reg-set.h $(RESOURCE_H) \
$(TM_P_H) $(BASIC_BLOCK_H)
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c \ $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c \
$(OUTPUT_OPTION) $(OUTPUT_OPTION)
......
...@@ -845,6 +845,7 @@ from the machine description file `md'. */\n\n"); ...@@ -845,6 +845,7 @@ from the machine description file `md'. */\n\n");
printf ("#include \"reload.h\"\n"); printf ("#include \"reload.h\"\n");
printf ("#include \"toplev.h\"\n"); printf ("#include \"toplev.h\"\n");
printf ("#include \"ggc.h\"\n\n"); printf ("#include \"ggc.h\"\n\n");
printf ("#include \"basic-block.h\"\n\n");
printf ("#define FAIL return (end_sequence (), _val)\n"); printf ("#define FAIL return (end_sequence (), _val)\n");
printf ("#define DONE return (_val = get_insns (), end_sequence (), _val)\n\n"); printf ("#define DONE return (_val = get_insns (), end_sequence (), _val)\n\n");
......
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