From 41fe085f07f5d4302e05fa39ac47a61fd19cb766 Mon Sep 17 00:00:00 2001 From: Andrew Macleod Date: Mon, 16 Mar 1998 12:52:09 +0000 Subject: [PATCH] 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 --- gcc/genpeep.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gcc/genpeep.c b/gcc/genpeep.c index 3a765a7523f..df03042551a 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");