Commit ff61e417 by Nathan Froyd Committed by Nathan Froyd

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

From-SVN: r163048
parent 5a351c3c
2010-08-09 Nathan Froyd <froydnj@codesourcery.com> 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. * tree.h (tree_node_kind) [perm_list_kind,temp_list_kind]: Delete.
* tree.c (tree_node_kind): Delete corresponding entries. * tree.c (tree_node_kind): Delete corresponding entries.
......
...@@ -903,6 +903,7 @@ find_split_points (int overall_time, int overall_size) ...@@ -903,6 +903,7 @@ find_split_points (int overall_time, int overall_size)
ENTRY_BLOCK_PTR->aux = NULL; ENTRY_BLOCK_PTR->aux = NULL;
FOR_EACH_BB (bb) FOR_EACH_BB (bb)
bb->aux = NULL; bb->aux = NULL;
VEC_free (stack_entry, heap, stack);
BITMAP_FREE (current.ssa_names_to_pass); BITMAP_FREE (current.ssa_names_to_pass);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment