From: Dan Nicolaescu Date: Mon, 27 Aug 2001 16:46:16 +0000 (+0000) Subject: * ssa-ccp.c (ssa_const_prop): Free ssa_edges. X-Git-Tag: prereleases/libstdc++-3.0.95~2420 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c96bd05e6b0aa64889d9a2222fa55125dfa07b25;p=thirdparty%2Fgcc.git * ssa-ccp.c (ssa_const_prop): Free ssa_edges. From-SVN: r45194 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index bf70736c125a..d9cb360e8294 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2001-08-25 Dan Nicolaescu + + * ssa-ccp.c (ssa_const_prop): Free ssa_edges. + 2001-08-27 Alan Modra * config/rs6000/rs6000.c (mask_operand): Rewrite without diff --git a/gcc/ssa-ccp.c b/gcc/ssa-ccp.c index 5b1ca421f8f7..231f71af73ac 100644 --- a/gcc/ssa-ccp.c +++ b/gcc/ssa-ccp.c @@ -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;