diff options
author | Andrew Macleod <amacleod@gcc.gnu.org> | 1998-03-16 12:52:09 +0000 |
---|---|---|
committer | Andrew Macleod <amacleod@gcc.gnu.org> | 1998-03-16 12:52:09 +0000 |
commit | 41fe085f07f5d4302e05fa39ac47a61fd19cb766 (patch) | |
tree | e7674d087622a2ca8b05eef527502ae33f822547 /gcc/genpeep.c | |
parent | a8c3510c8f00f0061767bc47b693fbdec5de1ab8 (diff) | |
download | gcc-41fe085f07f5d4302e05fa39ac47a61fd19cb766.zip gcc-41fe085f07f5d4302e05fa39ac47a61fd19cb766.tar.gz gcc-41fe085f07f5d4302e05fa39ac47a61fd19cb766.tar.bz2 |
genpeep.c (main): Add "except.h" to include file list in generated file insn-peep.c.
* genpeep.c (main): Add "except.h" to include file list in generated
file insn-peep.c.
From-SVN: r18626
Diffstat (limited to 'gcc/genpeep.c')
-rw-r--r-- | gcc/genpeep.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c index 3a765a7..df03042 100644 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -463,7 +463,8 @@ from the machine description file `md'. */\n\n"); printf ("#include \"rtl.h\"\n"); printf ("#include \"regs.h\"\n"); printf ("#include \"output.h\"\n"); - printf ("#include \"real.h\"\n\n"); + printf ("#include \"real.h\"\n"); + printf ("#include \"except.h\"\n\n"); printf ("extern rtx peep_operand[];\n\n"); printf ("#define operands peep_operand\n\n"); |