summaryrefslogtreecommitdiff
path: root/gcc/tree-flow.h
diff options
context:
space:
mode:
authordnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-18 20:31:28 +0000
committerdnovillo <dnovillo@138bc75d-0d04-0410-961f-82ee72b054a4>2006-02-18 20:31:28 +0000
commitb0b70f22400f5ffb2748a3524bf812001c6d7bb2 (patch)
tree8706195a9d7fb08a7c0d067ba68332832e65eaa1 /gcc/tree-flow.h
parent56753e9de9650a172a06e1174847f987227402f5 (diff)
downloadgcc-b0b70f22400f5ffb2748a3524bf812001c6d7bb2.tar.gz
* tree-flow.h (struct var_ann_d): Rename field is_alias_tag to
is_aliased. Update all users. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@111249 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r--gcc/tree-flow.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h
index 864835b28c9..32b8c9f6da6 100644
--- a/gcc/tree-flow.h
+++ b/gcc/tree-flow.h
@@ -164,10 +164,8 @@ struct var_ann_d GTY(())
/* Used when building root_var structures in tree_ssa_live.[ch]. */
unsigned root_var_processed : 1;
- /* Nonzero if this variable is an alias tag that represents references to
- other variables (i.e., this variable appears in the MAY_ALIASES array
- of other variables). */
- unsigned is_alias_tag : 1;
+ /* Nonzero if this variable is in the alias set of another variable. */
+ unsigned is_aliased : 1;
/* Nonzero if this variable was used after SSA optimizations were
applied. We set this when translating out of SSA form. */
@@ -206,7 +204,6 @@ struct var_ann_d GTY(())
current version of this variable (an SSA_NAME). */
tree current_def;
-
/* If this variable is a structure, this fields holds a list of
symbols representing each of the fields of the structure. */
subvar_t subvars;