]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* ipa-split.c (find_split_points): Free stack.
authorNathan Froyd <froydnj@codesourcery.com>
Tue, 10 Aug 2010 03:00:37 +0000 (03:00 +0000)
committerNathan Froyd <froydnj@gcc.gnu.org>
Tue, 10 Aug 2010 03:00:37 +0000 (03:00 +0000)
From-SVN: r163048

gcc/ChangeLog
gcc/ipa-split.c

index ca7c0710b5718b507ff585b6afd50cee64a3ce08..e86fac8ab0d945475d23bea175b9ae4e6812a053 100644 (file)
@@ -1,3 +1,7 @@
+2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
+
+       * ipa-split.c (find_split_points): Free stack.
+
 2010-08-09  Nathan Froyd  <froydnj@codesourcery.com>
 
        * tree.h (tree_node_kind) [perm_list_kind,temp_list_kind]: Delete.
index 9c738bf0c66bb6321986bd69846227043ed4f1f3..6567d59c1a45e621fca52cc3efd960220b789ce3 100644 (file)
@@ -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);
 }