diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-12 03:28:42 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-10-12 03:28:42 +0000 |
commit | 1a20e69bfa7c0ca0166ff5910a680cf59575aa04 (patch) | |
tree | 214782fe4875a3f0097b198deff55eaad40b5c0f /gcc | |
parent | ad48548c54970ea1c18a52dde56ab244ae0fd543 (diff) | |
download | gcc-1a20e69bfa7c0ca0166ff5910a680cf59575aa04.tar.gz |
Make fatal_insn calls in md file work.
* genoutput.c: Include toplev.h.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@29908 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/genoutput.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 7e49dc1d66c..8a5acbc59ff 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +Mon Oct 11 20:18:41 1999 Jim Wilson <wilson@cygnus.com> + + * genoutput.c: Include toplev.h. + Mon Oct 11 18:56:14 1999 Jim Wilson <wilson@cygnus.com> * config/sparc/liteelf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): diff --git a/gcc/genoutput.c b/gcc/genoutput.c index fa55181f787..89302d43236 100644 --- a/gcc/genoutput.c +++ b/gcc/genoutput.c @@ -232,7 +232,7 @@ from the machine description file `md'. */\n\n"); printf ("#include \"insn-attr.h\"\n\n"); printf ("#include \"insn-codes.h\"\n\n"); printf ("#include \"recog.h\"\n\n"); - + printf ("#include \"toplev.h\"\n"); printf ("#include \"output.h\"\n"); } |