Commit 1e3e17d3 by Jan Hubicka Committed by Jan Hubicka

tree-ssa-operands.c (fini_ssa_operands): ggc_free unused arrays.

	* tree-ssa-operands.c (fini_ssa_operands): ggc_free unused arrays.
	* tree-ssanames (init_ssanames): Likewise.

From-SVN: r87054
parent 1970d8c5
2004-09-03 Jan Hubicka <jh@suse.cz>
* tree-ssa-operands.c (fini_ssa_operands): ggc_free unused arrays.
* tree-ssanames (init_ssanames): Likewise.
2004-09-03 Ziemowit Laski <zlaski@apple.com>
* stub-objc.c (objc_is_id, objc_declare_alias, objc_declare_class,
......
......@@ -290,6 +290,16 @@ init_ssa_operands (void)
void
fini_ssa_operands (void)
{
ggc_free (build_defs);
ggc_free (build_uses);
ggc_free (build_v_may_defs);
ggc_free (build_vuses);
ggc_free (build_v_must_defs);
build_defs = NULL;
build_uses = NULL;
build_v_may_defs = NULL;
build_vuses = NULL;
build_v_must_defs = NULL;
}
......
......@@ -155,6 +155,8 @@ init_ssanames (void)
void
fini_ssanames (void)
{
ggc_free (ssa_names);
ssa_names = NULL;
free_ssanames = NULL;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment