From 1e3e17d3bed869f0a2bd3892b03ec53339d2724c Mon Sep 17 00:00:00 2001 From: Jan Hubicka Date: Fri, 3 Sep 2004 22:36:02 +0200 Subject: 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 --- gcc/tree-ssa-operands.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'gcc/tree-ssa-operands.c') diff --git a/gcc/tree-ssa-operands.c b/gcc/tree-ssa-operands.c index c57d486..a87d845 100644 --- a/gcc/tree-ssa-operands.c +++ b/gcc/tree-ssa-operands.c @@ -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; } -- cgit v1.1