Commit 3648099b by Bernd Schmidt Committed by Bernd Schmidt

Make insn-recog.c include function.h

From-SVN: r28750
parent 4c9d8fa8
Wed Aug 18 06:37:44 1999 Bernd Schmidt <bernds@cygnus.co.uk>
* Makefile.in (insn-recog.o): Update dependencies.
* genrecog.c (main): Make generated file include "function.h".
Sat Aug 14 00:54:57 1999 Geoffrey Keating <geoffk@cygnus.com> Sat Aug 14 00:54:57 1999 Geoffrey Keating <geoffk@cygnus.com>
* cse.c (cse_insn): Call never_reached_warning when a jump is * cse.c (cse_insn): Call never_reached_warning when a jump is
......
...@@ -1669,7 +1669,7 @@ s-emit : $(md_file) genemit $(srcdir)/move-if-change ...@@ -1669,7 +1669,7 @@ s-emit : $(md_file) genemit $(srcdir)/move-if-change
touch s-emit touch s-emit
insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \ insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \
real.h output.h flags.h system.h real.h output.h flags.h system.h function.h
$(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
insn-recog.c: s-recog ; @true insn-recog.c: s-recog ; @true
......
...@@ -1762,6 +1762,7 @@ from the machine description file `md'. */\n\n"); ...@@ -1762,6 +1762,7 @@ from the machine description file `md'. */\n\n");
printf ("#include \"config.h\"\n"); printf ("#include \"config.h\"\n");
printf ("#include \"system.h\"\n"); printf ("#include \"system.h\"\n");
printf ("#include \"rtl.h\"\n"); printf ("#include \"rtl.h\"\n");
printf ("#include \"function.h\"\n");
printf ("#include \"insn-config.h\"\n"); printf ("#include \"insn-config.h\"\n");
printf ("#include \"recog.h\"\n"); printf ("#include \"recog.h\"\n");
printf ("#include \"real.h\"\n"); printf ("#include \"real.h\"\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