diff options
author | Toon Moene <toon@moene.indiv.nluug.nl> | 2004-09-12 07:51:02 +0200 |
---|---|---|
committer | Toon Moene <toon@gcc.gnu.org> | 2004-09-12 05:51:02 +0000 |
commit | a924fe34118e65f7d75b0bea124e79b0ec9d7a37 (patch) | |
tree | f81ffd2499193ee5de7e406cb262ddcdb7921622 /gcc/loop-invariant.c | |
parent | 0fe0caa6d942920ebaab6197c8bedb4e371e9110 (diff) | |
download | gcc-a924fe34118e65f7d75b0bea124e79b0ec9d7a37.zip gcc-a924fe34118e65f7d75b0bea124e79b0ec9d7a37.tar.gz gcc-a924fe34118e65f7d75b0bea124e79b0ec9d7a37.tar.bz2 |
common.opt: Remove flags -fmove-all-movables and -freduce-all-givs.
2004-09-12 Toon Moene <toon@moene.indiv.nluug.nl>
* common.opt: Remove flags -fmove-all-movables and
-freduce-all-givs.
* loop-invariant.c (find_invariants_to_move):
Remove all uses of flag_move_all_movables.
* loop.c (move_movables): Remove all uses of
flag_move_all_movables.
(strength_reduce): Remove all uses of
flag_reduce_all_givs.
* doc/invoke.texi: Remove documentation of flags
-fremove-all-movables and -freduce-all-givs.
From-SVN: r87386
Diffstat (limited to 'gcc/loop-invariant.c')
-rw-r--r-- | gcc/loop-invariant.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/gcc/loop-invariant.c b/gcc/loop-invariant.c index 2004dbf..36d5118 100644 --- a/gcc/loop-invariant.c +++ b/gcc/loop-invariant.c @@ -715,17 +715,6 @@ find_invariants_to_move (struct df *df) unsigned i, regs_used, n_inv_uses, regs_needed = 0, new_regs; struct invariant *inv = NULL; - if (flag_move_all_movables) - { - /* This is easy & stupid. */ - for (i = 0; i < VARRAY_ACTIVE_SIZE (invariants); i++) - { - inv = VARRAY_GENERIC_PTR_NOGC (invariants, i); - inv->move = true; - } - return; - } - if (!VARRAY_ACTIVE_SIZE (invariants)) return; |