diff options
author | Diego Novillo <dnovillo@redhat.com> | 2006-02-18 20:31:28 +0000 |
---|---|---|
committer | Diego Novillo <dnovillo@gcc.gnu.org> | 2006-02-18 15:31:28 -0500 |
commit | faf7c6784ec03e856d8c8b54d3c9173eb1a0ce2a (patch) | |
tree | 8706195a9d7fb08a7c0d067ba68332832e65eaa1 /gcc/tree-flow.h | |
parent | 3f2de3dcf930e5fb85df3d6f89a6faac8d6c5367 (diff) | |
download | gcc-faf7c6784ec03e856d8c8b54d3c9173eb1a0ce2a.zip gcc-faf7c6784ec03e856d8c8b54d3c9173eb1a0ce2a.tar.gz gcc-faf7c6784ec03e856d8c8b54d3c9173eb1a0ce2a.tar.bz2 |
tree-flow.h (struct var_ann_d): Rename field is_alias_tag to is_aliased.
* tree-flow.h (struct var_ann_d): Rename field is_alias_tag to
is_aliased.
Update all users.
From-SVN: r111249
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; |