diff options
Diffstat (limited to 'gcc/genpeep.c')
-rw-r--r-- | gcc/genpeep.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c index 3a877fe..0e6b0db 100644 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -445,6 +445,7 @@ from the machine description file `md'. */\n\n"); printf ("#include \"except.h\"\n\n"); printf ("#include \"function.h\"\n\n"); + printf ("#ifdef HAVE_peephole\n"); printf ("extern rtx peep_operand[];\n\n"); printf ("#define operands peep_operand\n\n"); @@ -485,6 +486,7 @@ from the machine description file `md'. */\n\n"); max_opno = 1; printf ("rtx peep_operand[%d];\n", max_opno + 1); + printf ("#endif\n"); fflush (stdout); exit (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); |