From 545484c681e129d3372be4e911204f5ab80bf26a Mon Sep 17 00:00:00 2001 From: kazu Date: Tue, 3 May 2005 20:18:32 +0000 Subject: * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@99179 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/tree-vectorizer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gcc/tree-vectorizer.h') 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; } /*-----------------------------------------------------------------*/ -- cgit v1.2.3