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/loop-init.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/loop-init.c')
-rw-r--r-- | gcc/loop-init.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/loop-init.c b/gcc/loop-init.c index 8634591..8bd3a48 100644 --- a/gcc/loop-init.c +++ b/gcc/loop-init.c @@ -560,7 +560,7 @@ public: /* opt_pass methods: */ virtual bool gate (function *) { - return (flag_peel_loops || flag_unroll_loops || flag_unroll_all_loops); + return (flag_unroll_loops || flag_unroll_all_loops); } virtual unsigned int execute (function *); |