aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authorKazu Hirata <kazu@cs.umass.edu>2005-05-03 20:18:32 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2005-05-03 20:18:32 +0000
commitbed133ea1452ece4614080aac09602e50935291d (patch)
tree653fec089dc4987002e502a125655d1834fc9cec /gcc/tree-flow.h
parent9d4440a547cafd1fb3fab572ed14122a79009c00 (diff)
downloadgcc-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-flow.h')
-rw-r--r--gcc/tree-flow.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index 3d946a6..d71238c 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -121,10 +121,6 @@ struct tree_ann_common_d GTY(())
/* Annotation type. */
enum tree_ann_type type;
- /* Auxiliary info specific to a pass. At all times, this
- should either point to valid data or be NULL. */
- PTR GTY ((skip (""))) aux;
-
/* The value handle for this expression. Used by GVN-PRE. */
tree GTY((skip)) value_handle;
};
@@ -325,6 +321,10 @@ struct stmt_ann_d GTY(())
pass which needs statement UIDs. */
unsigned int uid;
+ /* Auxiliary info specific to a pass. At all times, this
+ should either point to valid data or be NULL. */
+ PTR GTY ((skip (""))) aux;
+
/* Linked list of histograms for value-based profiling. This is really a
struct histogram_value*. We use void* to avoid having to export that
everywhere, and to avoid having to put it in GC memory. */