diff options
author | Trevor Saunders <tbsaunde+gcc@tbsaunde.org> | 2015-05-22 01:04:24 +0000 |
---|---|---|
committer | Trevor Saunders <tbsaunde@gcc.gnu.org> | 2015-05-22 01:04:24 +0000 |
commit | d87834de87432d0ad05ca62ffcd68aba34bc0bc8 (patch) | |
tree | b9b8f8180fd4a7b71093a8572091026d66805bbf /gcc/genpeep.c | |
parent | 692e031294569fc76371c9eda58f01cce1716c22 (diff) | |
download | gcc-d87834de87432d0ad05ca62ffcd68aba34bc0bc8.zip gcc-d87834de87432d0ad05ca62ffcd68aba34bc0bc8.tar.gz gcc-d87834de87432d0ad05ca62ffcd68aba34bc0bc8.tar.bz2 |
always define HAVE_peephole
gcc/ChangeLog:
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.
From-SVN: r223519
Diffstat (limited to 'gcc/genpeep.c')
-rw-r--r-- | gcc/genpeep.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gcc/genpeep.c b/gcc/genpeep.c index 3ba930c..b914e85 100644 --- a/gcc/genpeep.c +++ b/gcc/genpeep.c @@ -389,7 +389,6 @@ from the machine description file `md'. */\n\n"); 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"); @@ -423,7 +422,6 @@ 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); return (ferror (stdout) != 0 ? FATAL_EXIT_CODE : SUCCESS_EXIT_CODE); |