diff options
author | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-18 16:46:53 +0000 |
---|---|---|
committer | crux <crux@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-08-18 16:46:53 +0000 |
commit | 4965cc84f8bf26f56b026652e358b6874d39c898 (patch) | |
tree | 9060d5efe51bc705de4a56882085f4c673421d0f /gcc | |
parent | 352d623d10be912f9a262efb8c8291ee8dbbb642 (diff) | |
download | gcc-4965cc84f8bf26f56b026652e358b6874d39c898.tar.gz |
Make insn-recog.c include function.h
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@28750 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/Makefile.in | 2 | ||||
-rw-r--r-- | gcc/genrecog.c | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0cdd854f91e..699645754c6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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 diff --git a/gcc/Makefile.in b/gcc/Makefile.in index d4b1d52323a..baee1a65d81 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -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 diff --git a/gcc/genrecog.c b/gcc/genrecog.c index 546f922cccb..1e23023042f 100644 --- a/gcc/genrecog.c +++ b/gcc/genrecog.c @@ -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"); |