diff options
author | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-13 20:32:30 +0000 |
---|---|---|
committer | froydnj <froydnj@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-13 20:32:30 +0000 |
commit | acb5ba8cd28ac921fb8c29cc247798f69e4cef13 (patch) | |
tree | bc8427c223524a9268882af9b40e71455cd04d65 /gcc/tree-flow.h | |
parent | 30c4e60d04e71c3ee3f79fefca3c6bb1bd9bc303 (diff) | |
download | gcc-acb5ba8cd28ac921fb8c29cc247798f69e4cef13.tar.gz |
* tree-flow.h (struct gimple_df): Make free_ssanames a VEC.
* tree-ssanames.c (fini_ssanames): VEC_free it.
(make_ssa_name_fn): Update for VECness of free_ssanames.
(release_ssa_name, release_dead_ssa_names): Likewise.
* tree.h (struct tree_ssa_name): Include tree_typed instead of
tree_common.
* tree.c (initialize_tree_contains_struct): Mark TS_SSA_NAME as
TS_TYPED instead of TS_COMMON.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@172393 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index 012c880ddab..a2fa425d2f4 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -61,7 +61,7 @@ struct GTY(()) gimple_df { struct pointer_map_t * GTY((skip(""))) decls_to_pointers; /* Free list of SSA_NAMEs. */ - tree free_ssanames; + VEC(tree,gc) *free_ssanames; /* Hashtable holding definition for symbol. If this field is not NULL, it means that the first reference to this variable in the function is a |