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-vectorizer.h | |
parent | 9d4440a547cafd1fb3fab572ed14122a79009c00 (diff) | |
download | gcc-bed133ea1452ece4614080aac09602e50935291d.tar.gz |
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-vectorizer.h')
-rw-r--r-- | gcc/tree-vectorizer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/tree-vectorizer.h b/gcc/tree-vectorizer.h index 3620b2bf16d..30a7830b675 100644 --- a/gcc/tree-vectorizer.h +++ b/gcc/tree-vectorizer.h @@ -241,14 +241,14 @@ static inline void set_stmt_info (stmt_ann_t ann, stmt_vec_info stmt_info) { if (ann) - ann->common.aux = (char *) stmt_info; + ann->aux = (char *) stmt_info; } static inline stmt_vec_info vinfo_for_stmt (tree stmt) { stmt_ann_t ann = stmt_ann (stmt); - return ann ? (stmt_vec_info) ann->common.aux : NULL; + return ann ? (stmt_vec_info) ann->aux : NULL; } /*-----------------------------------------------------------------*/ |