diff options
author | Jan Hubicka <hubicka@ucw.cz> | 2016-05-31 12:42:59 +0200 |
---|---|---|
committer | Jan Hubicka <hubicka@gcc.gnu.org> | 2016-05-31 10:42:59 +0000 |
commit | 29d1d5ec6b49e5241fa0f382cbcb512b25d412ba (patch) | |
tree | d5d4f25d9eb618f4e13cd1429ed3351a8cdb4dd9 /gcc/toplev.c | |
parent | 9014162d182760aeaa01d3f102ebc5fe99258855 (diff) | |
download | gcc-29d1d5ec6b49e5241fa0f382cbcb512b25d412ba.zip gcc-29d1d5ec6b49e5241fa0f382cbcb512b25d412ba.tar.gz gcc-29d1d5ec6b49e5241fa0f382cbcb512b25d412ba.tar.bz2 |
loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
* loop-init.c (gate): Do not enale RTL loop unroller with -fpeel-loops.
It no longer does that.
* toplev.c (process_options): Do not enable flag_web with -fpeel-loops.
From-SVN: r236915
Diffstat (limited to 'gcc/toplev.c')
-rw-r--r-- | gcc/toplev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/toplev.c b/gcc/toplev.c index 580c03a..0aa7989 100644 --- a/gcc/toplev.c +++ b/gcc/toplev.c @@ -1296,7 +1296,7 @@ process_options (void) /* web and rename-registers help when run after loop unrolling. */ if (flag_web == AUTODETECT_VALUE) - flag_web = flag_unroll_loops || flag_peel_loops; + flag_web = flag_unroll_loops; if (flag_rename_registers == AUTODETECT_VALUE) flag_rename_registers = flag_unroll_loops || flag_peel_loops; |