From: Andrew Pinski Date: Thu, 13 May 2004 22:10:43 +0000 (+0000) Subject: tree-into-ssa.c (insert_phi_nodes_for): XFREE bitmaps allocated with BITMAP_XMALLOC. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8b7520861b562c297a3cda422241e4d85ab3788b;p=gcc.git tree-into-ssa.c (insert_phi_nodes_for): XFREE bitmaps allocated with BITMAP_XMALLOC. 2004-05-13 Andrew Pinski * tree-into-ssa.c (insert_phi_nodes_for): XFREE bitmaps allocated with BITMAP_XMALLOC. From-SVN: r81809 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 04b9cde5759..d42c24b648c 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2004-05-13 Andrew Pinski + * 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. diff --git a/gcc/tree-into-ssa.c b/gcc/tree-into-ssa.c index 052674f73d1..34c31a047eb 100644 --- a/gcc/tree-into-ssa.c +++ b/gcc/tree-into-ssa.c @@ -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