diff options
author | Daniel Berlin <dberlin@dberlin.org> | 2005-11-10 17:23:49 +0000 |
---|---|---|
committer | Daniel Berlin <dberlin@gcc.gnu.org> | 2005-11-10 17:23:49 +0000 |
commit | c900f6aa99082a0cc764ed8bef3d6e36680cdb4b (patch) | |
tree | e1aebf7e655deddbb9685829f76a4937d5270573 /gcc/tree-flow.h | |
parent | 0618ee3194d08195e5f5996998d25126a7e129c2 (diff) | |
download | gcc-c900f6aa99082a0cc764ed8bef3d6e36680cdb4b.zip gcc-c900f6aa99082a0cc764ed8bef3d6e36680cdb4b.tar.gz gcc-c900f6aa99082a0cc764ed8bef3d6e36680cdb4b.tar.bz2 |
tree-ssa-alias.c (compute_may_aliases): Remove call to delete_old_heap_vars.
2005-11-10 Daniel Berlin <dberlin@dberlin.org>
* tree-ssa-alias.c (compute_may_aliases): Remove call to
delete_old_heap_vars.
* tree-dfa.c (referenced_var_remove): Remove function.
* tree-ssa.c (init_tree_ssa): Call init_alias_heapvars.
(delete_tree_ssa): Remove call to delete_old_heapvars.
Add call to delete_alias_heapvars.
* tree-flow.h (referenced_var_remove): Remove prototype
(init_alias_heapvars): New prototype.
(delete_alias_heapvars): Ditto.
* Makefile.in (tree-ssa-structalias.o): Add
gt-tree-ssa-structalias.o
(GTFILES): Add tree-ssa-structalias.h and
tree-ssa-structalias.c.
(s-gtype): Add gt-tree-ssa-structalias.h.
* tree-ssa-structalias.c (heapvars): Remove.
(oldheapvars): Remove.
(heapvar_for_stmt): New variable.
(heapvar_lookup): New function.
(heapvar_insert): Ditto.
(get_constraint_for): See if we have an old heapvar
to reuse.
(init_alias_heapvars): New function.
(delete_alias_heapvars): Ditto.
Add include of gt-tree-ssa-structalias.h.
From-SVN: r106743
Diffstat (limited to 'gcc/tree-flow.h')
-rw-r--r-- | gcc/tree-flow.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/tree-flow.h b/gcc/tree-flow.h index b61b357..8b01f8b 100644 --- a/gcc/tree-flow.h +++ b/gcc/tree-flow.h @@ -423,7 +423,6 @@ extern GTY((param_is (struct int_tree_map))) htab_t referenced_vars; extern tree referenced_var_lookup (unsigned int); extern tree referenced_var_lookup_if_exists (unsigned int); -extern void referenced_var_remove (tree); #define num_referenced_vars htab_elements (referenced_vars) #define referenced_var(i) referenced_var_lookup (i) @@ -892,7 +891,9 @@ int push_fields_onto_fieldstack (tree, VEC(fieldoff_s,heap) **, HOST_WIDE_INT, bool *); void sort_fieldstack (VEC(fieldoff_s,heap) *); -void delete_old_heap_vars (void); +void init_alias_heapvars (void); +void delete_alias_heapvars (void); + #include "tree-flow-inline.h" #endif /* _TREE_FLOW_H */ |