Commit 285463b5 by Zdenek Dvorak Committed by Zdenek Dvorak

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
parent beace35d
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
......
......@@ -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
......
......@@ -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);
......
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