diff options
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 864835b..32b8c9f 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; |