diff options
author | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-16 12:52:09 +0000 |
---|---|---|
committer | amacleod <amacleod@138bc75d-0d04-0410-961f-82ee72b054a4> | 1998-03-16 12:52:09 +0000 |
commit | 78d3cec962b69f8eaec712d9cdc973b7fbfa2d08 (patch) | |
tree | e7674d087622a2ca8b05eef527502ae33f822547 /gcc/genpeep.c | |
parent | 5ecc296b450f8dbafba067c63352095232f7682c (diff) | |
download | gcc-78d3cec962b69f8eaec712d9cdc973b7fbfa2d08.tar.gz |
* genpeep.c (main): Add "except.h" to include file list in generated
file insn-peep.c.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@18626 138bc75d-0d04-0410-961f-82ee72b054a4
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 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"); |