tree-ssa-dce.c (perform_tree_ssa_dce): Free el at the end of the function.
authorAndrew Pinski <pinskia@physics.uc.edu>
Thu, 13 May 2004 23:01:52 +0000 (23:01 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Thu, 13 May 2004 23:01:52 +0000 (16:01 -0700)
2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>

        * tree-ssa-dce.c (perform_tree_ssa_dce): Free
        el at the end of the function.

From-SVN: r81813

gcc/ChangeLog
gcc/tree-ssa-dce.c

index ee5c4dd..4973fa6 100644 (file)
@@ -1,5 +1,8 @@
 2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>
 
+       * tree-ssa-dce.c (perform_tree_ssa_dce): Free
+       el at the end of the function.
+
        * tree-into-ssa.c (insert_phi_nodes_for): XFREE
        bitmaps allocated with BITMAP_XMALLOC.
 
index dc11ca1..c8ff7eb 100644 (file)
@@ -855,6 +855,8 @@ perform_tree_ssa_dce (bool aggressive)
     }
 
   tree_dce_done (aggressive);
+
+  free_edge_list (el);
 }
 
 /* Pass entry points.  */