* ssa-ccp.c (ssa_const_prop): Free ssa_edges.

From-SVN: r45194
This commit is contained in:
Dan Nicolaescu 2001-08-27 16:46:16 +00:00 committed by Jeff Law
parent c50594233b
commit c96bd05e6b
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2001-08-25 Dan Nicolaescu <dann@ics.uci.edu>
* ssa-ccp.c (ssa_const_prop): Free ssa_edges.
2001-08-27 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/rs6000.c (mask_operand): Rewrite without

View File

@ -1081,6 +1081,9 @@ ssa_const_prop (void)
sbitmap_free (executable_blocks);
executable_blocks = NULL;
sbitmap_free (ssa_edges);
ssa_edges = NULL;
free_edge_list (edges);
edges = NULL;