Skip to content
Snippets Groups Projects
Commit f472590a authored by Andrew Pinski's avatar Andrew Pinski Committed by Andrew Pinski
Browse files

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

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
parent d1f9044b
No related branches found
No related tags found
No related merge requests found
2004-05-13 Andrew Pinski <pinskia@physics.uc.edu> 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 * tree-ssa-alias.c (delete_alias_info): XFREE bitmaps allocated
with BITMAP_XMALLOC. with BITMAP_XMALLOC.
   
......
...@@ -883,8 +883,8 @@ static void ...@@ -883,8 +883,8 @@ static void
def_blocks_free (void *p) def_blocks_free (void *p)
{ {
struct def_blocks_d *entry = p; struct def_blocks_d *entry = p;
BITMAP_FREE (entry->def_blocks); BITMAP_XFREE (entry->def_blocks);
BITMAP_FREE (entry->livein_blocks); BITMAP_XFREE (entry->livein_blocks);
free (entry); free (entry);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment