diff options
author | Jeff Law <law@redhat.com> | 2004-10-31 20:24:44 -0700 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 2004-10-31 20:24:44 -0700 |
commit | ccbdbf0a4a98b8331aecc39188ef930923c95822 (patch) | |
tree | d9dc639eeb323bb9bfb212ca4c27abef24329cc5 /gcc/tree-ssa-loop.c | |
parent | db1de71358df247a01e1da358204155d23e3d08a (diff) | |
download | gcc-ccbdbf0a4a98b8331aecc39188ef930923c95822.zip gcc-ccbdbf0a4a98b8331aecc39188ef930923c95822.tar.gz gcc-ccbdbf0a4a98b8331aecc39188ef930923c95822.tar.bz2 |
cfgloop.h (struct loop): Remove unused "nodes" field.
* cfgloop.h (struct loop): Remove unused "nodes" field.
* timevar.def (TV_TREE_LOOP_BOUNDS): New.
* tree-data-ref.c (find_data_references_in_loop): Use get_loop_body
instead of calling flow_bb_inside_loop_p for every basic block
in the function.
* tree-ssa-loop.c (pass_record_bounds): Use TV_TREE_LOOP_BOUNDS.
From-SVN: r89932
Diffstat (limited to 'gcc/tree-ssa-loop.c')
-rw-r--r-- | gcc/tree-ssa-loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-ssa-loop.c b/gcc/tree-ssa-loop.c index 1eab89f..8ec9c3d 100644 --- a/gcc/tree-ssa-loop.c +++ b/gcc/tree-ssa-loop.c @@ -317,7 +317,7 @@ struct tree_opt_pass pass_record_bounds = NULL, /* sub */ NULL, /* next */ 0, /* static_pass_number */ - 0, /* tv_id */ + TV_TREE_LOOP_BOUNDS, /* tv_id */ PROP_cfg | PROP_ssa, /* properties_required */ 0, /* properties_provided */ 0, /* properties_destroyed */ |