diff options
author | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-22 01:04:24 +0000 |
---|---|---|
committer | tbsaunde <tbsaunde@138bc75d-0d04-0410-961f-82ee72b054a4> | 2015-05-22 01:04:24 +0000 |
commit | 211a5d9053332ba1ea665c3d85bcfc8b313d94ae (patch) | |
tree | b9b8f8180fd4a7b71093a8572091026d66805bbf /gcc/genconfig.c | |
parent | 9630036a6d102a7238325dae6602322abf901cc0 (diff) | |
download | gcc-211a5d9053332ba1ea665c3d85bcfc8b313d94ae.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@223519 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/genconfig.c')
-rw-r--r-- | gcc/genconfig.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gcc/genconfig.c b/gcc/genconfig.c index a3e5b3111ff..7237dedee56 100644 --- a/gcc/genconfig.c +++ b/gcc/genconfig.c @@ -369,6 +369,8 @@ main (int argc, char **argv) if (have_peephole_flag) printf ("#define HAVE_peephole 1\n"); + else + printf ("#define HAVE_peephole 0\n"); if (have_peephole2_flag) { |