diff options
author | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-03 02:19:40 +0000 |
---|---|---|
committer | dberlin <dberlin@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-09-03 02:19:40 +0000 |
commit | 41b5cc785f33fd6ac7c50b3c287a1ae8b726a060 (patch) | |
tree | 4172db41168cc2dde95bb3629aba5dcdd9c0314b /gcc/tree-ssa-loop.c | |
parent | 38401f3cdeaef0ccfb0fbdfdc08572a83ee95771 (diff) | |
download | gcc-41b5cc785f33fd6ac7c50b3c287a1ae8b726a060.tar.gz |
2004-09-02 Daniel Berlin <dberlin@dberlin.org>
* gcc/common.opt: Rename ivcanon to tree-loop-ivcanon, tree-lim to
tree-loop-im.
* gcc/tree-ssa-loop.c: Ditto
* gcc/tree-ssa-loop-ivcanon.c: Ditto
* gcc/doc/invoke.texi: Ditto.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@87023 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-loop.c')
-rw-r--r-- | gcc/tree-ssa-loop.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-ssa-loop.c b/gcc/tree-ssa-loop.c index 07ff98834e2..3ea6eedc014 100644 --- a/gcc/tree-ssa-loop.c +++ b/gcc/tree-ssa-loop.c @@ -137,7 +137,7 @@ tree_ssa_loop_im (void) static bool gate_tree_ssa_loop_im (void) { - return flag_tree_lim != 0; + return flag_tree_loop_im != 0; } struct tree_opt_pass pass_lim = @@ -204,7 +204,7 @@ tree_ssa_loop_ivcanon (void) static bool gate_tree_ssa_loop_ivcanon (void) { - return flag_ivcanon != 0; + return flag_tree_loop_ivcanon != 0; } struct tree_opt_pass pass_iv_canon = |