diff options
author | Kazu Hirata <kazu@cs.umass.edu> | 2005-05-03 20:18:32 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2005-05-03 20:18:32 +0000 |
commit | bed133ea1452ece4614080aac09602e50935291d (patch) | |
tree | 653fec089dc4987002e502a125655d1834fc9cec /gcc/tree-ssa-loop-im.c | |
parent | 9d4440a547cafd1fb3fab572ed14122a79009c00 (diff) | |
download | gcc-bed133ea1452ece4614080aac09602e50935291d.zip gcc-bed133ea1452ece4614080aac09602e50935291d.tar.gz gcc-bed133ea1452ece4614080aac09602e50935291d.tar.bz2 |
tree-flow.h (tree_ann_common_d): Move aux to ...
* tree-flow.h (tree_ann_common_d): Move aux to ...
(stmt_ann_d): ... here.
* tree-ssa-loop-im.c (LIM_DATA, determine_invariantness_stmt,
move_computations_stmt, schedule_sm): Update references to
aux.
* tree-vectorizer.h (set_stmt_info, vinfo_for_stmt): Likewise.
From-SVN: r99179
Diffstat (limited to 'gcc/tree-ssa-loop-im.c')
-rw-r--r-- | gcc/tree-ssa-loop-im.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-ssa-loop-im.c b/gcc/tree-ssa-loop-im.c index e34a821..88a621a 100644 --- a/gcc/tree-ssa-loop-im.c +++ b/gcc/tree-ssa-loop-im.c @@ -101,7 +101,7 @@ struct lim_aux_data #define LIM_DATA(STMT) (TREE_CODE (STMT) == PHI_NODE \ ? NULL \ - : (struct lim_aux_data *) (stmt_ann (STMT)->common.aux)) + : (struct lim_aux_data *) (stmt_ann (STMT)->aux)) /* Description of a memory reference for store motion. */ @@ -625,7 +625,7 @@ determine_invariantness_stmt (struct dom_walk_data *dw_data ATTRIBUTE_UNUSED, stmt = stmt1; } - stmt_ann (stmt)->common.aux = xcalloc (1, sizeof (struct lim_aux_data)); + stmt_ann (stmt)->aux = xcalloc (1, sizeof (struct lim_aux_data)); LIM_DATA (stmt)->always_executed_in = outermost; if (maybe_never && pos == MOVE_PRESERVE_EXECUTION) @@ -716,7 +716,7 @@ move_computations_stmt (struct dom_walk_data *dw_data ATTRIBUTE_UNUSED, cost = LIM_DATA (stmt)->cost; level = LIM_DATA (stmt)->tgt_loop; free_lim_aux_data (LIM_DATA (stmt)); - stmt_ann (stmt)->common.aux = NULL; + stmt_ann (stmt)->aux = NULL; if (!level) { @@ -1171,7 +1171,7 @@ schedule_sm (struct loop *loop, edge *exits, unsigned n_exits, tree ref, /* Emit the load & stores. */ load = build (MODIFY_EXPR, void_type_node, tmp_var, ref); - get_stmt_ann (load)->common.aux = xcalloc (1, sizeof (struct lim_aux_data)); + get_stmt_ann (load)->aux = xcalloc (1, sizeof (struct lim_aux_data)); LIM_DATA (load)->max_loop = loop; LIM_DATA (load)->tgt_loop = loop; |