aboutsummaryrefslogtreecommitdiff
path: root/gcc/tree.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/tree.h')
-rw-r--r--gcc/tree.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/tree.h b/gcc/tree.h
index 4c4a275..37534ca 100644
--- a/gcc/tree.h
+++ b/gcc/tree.h
@@ -1235,6 +1235,10 @@ struct tree_exp GTY(())
#define SSA_NAME_VALUE(N) \
SSA_NAME_CHECK (N)->ssa_name.value_handle
+/* Auxiliary pass-specific data. */
+#define SSA_NAME_AUX(N) \
+ SSA_NAME_CHECK (N)->ssa_name.aux
+
#ifndef _TREE_FLOW_H
struct ptr_info_def;
#endif
@@ -1254,6 +1258,9 @@ struct tree_ssa_name GTY(())
/* Value for SSA name used by GVN. */
tree GTY((skip)) value_handle;
+
+ /* Auxiliary information stored with the ssa name. */
+ PTR GTY((skip)) aux;
};
/* In a PHI_NODE node. */