Make insn-recog.c include function.h
authorBernd Schmidt <bernds@cygnus.co.uk>
Wed, 18 Aug 1999 16:46:53 +0000 (16:46 +0000)
committerBernd Schmidt <crux@gcc.gnu.org>
Wed, 18 Aug 1999 16:46:53 +0000 (16:46 +0000)
From-SVN: r28750

gcc/ChangeLog
gcc/Makefile.in
gcc/genrecog.c

index 0cdd854..6996457 100644 (file)
@@ -1,3 +1,8 @@
+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>
 
        * cse.c (cse_insn): Call never_reached_warning when a jump is
index d4b1d52..baee1a6 100644 (file)
@@ -1669,7 +1669,7 @@ s-emit : $(md_file) genemit $(srcdir)/move-if-change
        touch s-emit
 
 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
 
 insn-recog.c: s-recog ; @true
index 546f922..1e23023 100644 (file)
@@ -1762,6 +1762,7 @@ from the machine description file `md'.  */\n\n");
   printf ("#include \"config.h\"\n");
   printf ("#include \"system.h\"\n");
   printf ("#include \"rtl.h\"\n");
+  printf ("#include \"function.h\"\n");
   printf ("#include \"insn-config.h\"\n");
   printf ("#include \"recog.h\"\n");
   printf ("#include \"real.h\"\n");