From: froydnj Date: Tue, 10 Aug 2010 03:00:37 +0000 (+0000) Subject: * ipa-split.c (find_split_points): Free stack. X-Git-Tag: upstream/4.9.2~27392 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=84b536753001ff40e95bf6d5d140ed1baadb30d4;p=platform%2Fupstream%2Flinaro-gcc.git * ipa-split.c (find_split_points): Free stack. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@163048 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca7c071..e86fac8 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,9 @@ 2010-08-09 Nathan Froyd + * ipa-split.c (find_split_points): Free stack. + +2010-08-09 Nathan Froyd + * tree.h (tree_node_kind) [perm_list_kind,temp_list_kind]: Delete. * tree.c (tree_node_kind): Delete corresponding entries. diff --git a/gcc/ipa-split.c b/gcc/ipa-split.c index 9c738bf..6567d59 100644 --- a/gcc/ipa-split.c +++ b/gcc/ipa-split.c @@ -903,6 +903,7 @@ find_split_points (int overall_time, int overall_size) ENTRY_BLOCK_PTR->aux = NULL; FOR_EACH_BB (bb) bb->aux = NULL; + VEC_free (stack_entry, heap, stack); BITMAP_FREE (current.ssa_names_to_pass); }