summaryrefslogtreecommitdiff
path: root/gcc/graphite-clast-to-gimple.c
diff options
context:
space:
mode:
authorspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2009-11-25 05:28:32 +0000
committerspop <spop@138bc75d-0d04-0410-961f-82ee72b054a4>2009-11-25 05:28:32 +0000
commitd996851cfeb948d2db71ba62488f810de5243aac (patch)
tree839c85ef43301512ee616a5752b15d653fc6c9be /gcc/graphite-clast-to-gimple.c
parent87d25ca72902c6e2ddc2ffec4b985dded37f33f4 (diff)
downloadgcc-d996851cfeb948d2db71ba62488f810de5243aac.tar.gz
2009-11-03 Sebastian Pop <sebastian.pop@amd.com>
* graphite-clast-to-gimple.c (gloog): Free if_region, if_region->true_region, and if_region->region. * sese.c (if_region_set_false_region): Free if_region->false_region. (create_if_region_on_edge): Do not use GGC_NEW. (move_sese_in_condition): Remove useless initialization. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@154633 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/graphite-clast-to-gimple.c')
-rw-r--r--gcc/graphite-clast-to-gimple.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/gcc/graphite-clast-to-gimple.c b/gcc/graphite-clast-to-gimple.c
index 85941908663..2df86fa2ac9 100644
--- a/gcc/graphite-clast-to-gimple.c
+++ b/gcc/graphite-clast-to-gimple.c
@@ -1201,6 +1201,10 @@ gloog (scop_p scop, htab_t bb_pbb_mapping)
recompute_all_dominators ();
graphite_verify ();
+ free (if_region->true_region);
+ free (if_region->region);
+ free (if_region);
+
htab_delete (rename_map);
htab_delete (newivs_index);
VEC_free (tree, heap, newivs);