+2015-05-20 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
+
+ * final.c (final_scan_insn): Don't check HAVE_peephole with the
+ preprocessor.
+ * output.h: Likewise.
+ * genconfig.c (main): Alwways define HAVE_peephole.
+ * genpeep.c: Don't emit checks of HAVE_peephole.
+
2015-05-20 Trevor Saunders <tbsaunde+gcc@tbsaunde.org>
* combine.c, expmed.c, expr.c, optabs.c optabs.h, toplev.c: DOn't
#endif
-#ifdef HAVE_peephole
/* Do machine-specific peephole optimizations if desired. */
- if (optimize_p && !flag_no_peephole && !nopeepholes)
+ if (HAVE_peephole && optimize_p && !flag_no_peephole && !nopeepholes)
{
rtx_insn *next = peephole (insn);
/* When peepholing, if there were notes within the peephole,
/* PEEPHOLE might have changed this. */
body = PATTERN (insn);
}
-#endif
/* Try to recognize the instruction.
If successful, verify that the operands satisfy the
if (have_peephole_flag)
printf ("#define HAVE_peephole 1\n");
+ else
+ printf ("#define HAVE_peephole 0\n");
if (have_peephole2_flag)
{
printf ("#include \"flags.h\"\n");
printf ("#include \"tm-constrs.h\"\n\n");
- printf ("#ifdef HAVE_peephole\n");
printf ("extern rtx peep_operand[];\n\n");
printf ("#define operands peep_operand\n\n");
max_opno = 1;
printf ("rtx peep_operand[%d];\n", max_opno + 1);
- printf ("#endif\n");
fflush (stdout);
return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE);
/* Return the size of the constant pool. */
extern int get_pool_size (void);
-#ifdef HAVE_peephole
extern rtx_insn *peephole (rtx_insn *);
-#endif
extern void output_shared_constant_pool (void);