tree-into-ssa.c (insert_phi_nodes_for): XFREE bitmaps allocated with BITMAP_XMALLOC.
authorAndrew Pinski <pinskia@physics.uc.edu>
Thu, 13 May 2004 22:10:43 +0000 (22:10 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Thu, 13 May 2004 22:10:43 +0000 (15:10 -0700)
2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>

        * tree-into-ssa.c (insert_phi_nodes_for): XFREE
        bitmaps allocated with BITMAP_XMALLOC.

From-SVN: r81809

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

index 04b9cde5759ebf65a2f24aee429c5e04a5d4d10e..d42c24b648c138732a05e3c229d70094886ea2e7 100644 (file)
@@ -1,5 +1,8 @@
 2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>
 
+       * tree-into-ssa.c (insert_phi_nodes_for): XFREE
+       bitmaps allocated with BITMAP_XMALLOC.
+
        * loop-unswitch.c (unswitch_single_loop): Free bbs at
        the end.
 
index 052674f73d15131b0e58f679185bc75a76805894..34c31a047eb5b3eb0d8c686c2c90beb1e98284df 100644 (file)
@@ -694,7 +694,7 @@ insert_phi_nodes_for (tree var, bitmap *dfs, varray_type *work_stack)
       create_phi_node (var, BASIC_BLOCK (bb_index));
     });
 
-  BITMAP_FREE (phi_insertion_points);
+  BITMAP_XFREE (phi_insertion_points);
 }
 
 /* SSA Rewriting Step 2.  Rewrite every variable used in each statement in