diff options
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 3620b2b..30a7830 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; } /*-----------------------------------------------------------------*/ |