From: Nathan Froyd Date: Tue, 10 Aug 2010 03:00:37 +0000 (+0000) Subject: * ipa-split.c (find_split_points): Free stack. X-Git-Tag: releases/gcc-4.6.0~5146 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff61e417cf1adde9a9f4e6a66c8bc708bdef7e6f;p=thirdparty%2Fgcc.git * ipa-split.c (find_split_points): Free stack. From-SVN: r163048 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index ca7c0710b571..e86fac8ab0d9 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +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. diff --git a/gcc/ipa-split.c b/gcc/ipa-split.c index 9c738bf0c66b..6567d59c1a45 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); }