]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
* ssa-ccp.c (ssa_const_prop): Free ssa_edges.
authorDan Nicolaescu <dann@ics.uci.edu>
Mon, 27 Aug 2001 16:46:16 +0000 (16:46 +0000)
committerJeff Law <law@gcc.gnu.org>
Mon, 27 Aug 2001 16:46:16 +0000 (10:46 -0600)
From-SVN: r45194

gcc/ChangeLog
gcc/ssa-ccp.c

index bf70736c125a8e84ac99ea9a9aea23321d9d3d47..d9cb360e829482282a86ada44c25438ef8a97f91 100644 (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
index 5b1ca421f8f7d6f78f2f2839d3f4c4495bdf4a42..231f71af73ac7b877a58e9c1a126cdb67812b7d0 100644 (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;