* ipa-split.c (find_split_points): Free stack.

From-SVN: r163048
This commit is contained in:
Nathan Froyd 2010-08-10 03:00:37 +00:00 committed by Nathan Froyd
parent 5a351c3ca0
commit ff61e417cf
2 changed files with 5 additions and 0 deletions

View 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.

View 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);
}