diff options
author | Nathan Froyd <froydnj@codesourcery.com> | 2011-04-13 20:32:30 +0000 |
---|---|---|
committer | Nathan Froyd <froydnj@gcc.gnu.org> | 2011-04-13 20:32:30 +0000 |
commit | 4b1a46942eacea3c40aff3d22d7712c530721aa8 (patch) | |
tree | bc8427c223524a9268882af9b40e71455cd04d65 /gcc/tree-flow.h | |
parent | 4da3b811f9f7456dacd2c5e6fdc0ba2cf4ca39e1 (diff) | |
download | gcc-4b1a46942eacea3c40aff3d22d7712c530721aa8.zip gcc-4b1a46942eacea3c40aff3d22d7712c530721aa8.tar.gz gcc-4b1a46942eacea3c40aff3d22d7712c530721aa8.tar.bz2 |
tree-flow.h (struct gimple_df): Make free_ssanames a VEC.
* 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.
From-SVN: r172393
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 012c880..a2fa425 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 |