2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
* tree-into-ssa.c (def_blocks_free): XFREE bitmaps allocated
with BITMAP_XMALLOC.
From-SVN: r81791
2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
+ * tree-into-ssa.c (def_blocks_free): XFREE bitmaps allocated
+ with BITMAP_XMALLOC.
+
* tree-ssa-alias.c (delete_alias_info): XFREE bitmaps allocated
with BITMAP_XMALLOC.
def_blocks_free (void *p)
{
struct def_blocks_d *entry = p;
- BITMAP_FREE (entry->def_blocks);
- BITMAP_FREE (entry->livein_blocks);
+ BITMAP_XFREE (entry->def_blocks);
+ BITMAP_XFREE (entry->livein_blocks);
free (entry);
}