diff options
Diffstat (limited to 'gcc/genemit.c')
-rw-r--r-- | gcc/genemit.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gcc/genemit.c b/gcc/genemit.c index c9e2836cc5a..d9281301b92 100644 --- a/gcc/genemit.c +++ b/gcc/genemit.c @@ -771,11 +771,11 @@ from the machine description file `md'. */\n\n"); printf ("#include \"real.h\"\n"); printf ("#include \"flags.h\"\n"); printf ("#include \"output.h\"\n"); - printf ("#include \"insn-config.h\"\n\n"); - printf ("#include \"insn-flags.h\"\n\n"); - printf ("#include \"insn-codes.h\"\n\n"); - printf ("#include \"reload.h\"\n"); - printf ("extern char *insn_operand_constraint[][MAX_RECOG_OPERANDS];\n\n"); + printf ("#include \"insn-config.h\"\n"); + printf ("#include \"insn-flags.h\"\n"); + printf ("#include \"insn-codes.h\"\n"); + printf ("#include \"recog.h\"\n"); + printf ("#include \"reload.h\"\n\n"); printf ("extern rtx recog_operand[];\n"); printf ("#define operands emit_operand\n\n"); printf ("#define FAIL return (end_sequence (), _val)\n"); |