Commit 8b752086 by Andrew Pinski Committed by Andrew Pinski

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

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
parent 77e23325
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.
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment