tree-ssa-structalias.c (delete_points_to_sets): Free graph->complex.

* tree-ssa-structalias.c (delete_points_to_sets): Free graph->complex.
	* tree-ssa-operands.c (finalize_ssa_vuse_ops): Free new_ops.

From-SVN: r124012
This commit is contained in:
Zdenek Dvorak 2007-04-21 01:27:51 +02:00 committed by Zdenek Dvorak
parent beace35d3f
commit 285463b5a2
3 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2007-04-21 Zdenek Dvorak <dvorakz@suse.cz>
* tree-ssa-structalias.c (delete_points_to_sets): Free graph->complex.
* tree-ssa-operands.c (finalize_ssa_vuse_ops): Free new_ops.
2007-04-20 Daniel Jacobowitz <dan@codesourcery.com>
* config/rs6000/sysv4.h (STARTFILE_DEFAULT_SPEC): Include

View File

@ -1072,6 +1072,7 @@ finalize_ssa_vuse_ops (tree stmt)
SET_USE (VUSE_OP_PTR (last, (int) i), op);
VUSE_OPS (stmt) = last;
VEC_free (tree, heap, new_ops);
}
#ifdef ENABLE_CHECKING

View File

@ -4877,6 +4877,7 @@ delete_points_to_sets (void)
for (i = 0; VEC_iterate (varinfo_t, varmap, i, v); i++)
VEC_free (constraint_t, heap, graph->complex[i]);
free (graph->complex);
free (graph->rep);
free (graph->succs);