tree-into-ssa.c (def_blocks_free): XFREE bitmaps allocated with BITMAP_XMALLOC.
authorAndrew Pinski <pinskia@physics.uc.edu>
Thu, 13 May 2004 15:26:33 +0000 (15:26 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Thu, 13 May 2004 15:26:33 +0000 (08:26 -0700)
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

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

index 06fcc4f9a0051c26e28c95000efacc92cd36d3c9..166654f51d32d5d681bbcbf91780471c057eae44 100644 (file)
@@ -1,5 +1,8 @@
 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.
 
index 90f4aa58d8dbf4fa39c64f26e44124e7a6f3c7ab..052674f73d15131b0e58f679185bc75a76805894 100644 (file)
@@ -883,8 +883,8 @@ static void
 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);
 }