tree-ssa.c (delete_tree_ssa): XFREE bitmaps allocated with BITMAP_XMALLOC.
authorAndrew Pinski <pinskia@physics.uc.edu>
Thu, 13 May 2004 23:13:14 +0000 (23:13 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Thu, 13 May 2004 23:13:14 +0000 (16:13 -0700)
2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>

        * tree-ssa.c (delete_tree_ssa): XFREE
        bitmaps allocated with BITMAP_XMALLOC.

From-SVN: r81817

gcc/ChangeLog
gcc/tree-ssa.c

index d625a52..03f7111 100644 (file)
@@ -1,5 +1,8 @@
 2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>
 
+       * tree-ssa.c (delete_tree_ssa): XFREE
+       bitmaps allocated with BITMAP_XMALLOC.
+
        * tree-ssa-pre.c (execute_pre): Free ephi_use_pool and
        idfs_cache at the end of the function.
 
index c145708..58d44c2 100644 (file)
@@ -521,7 +521,7 @@ delete_tree_ssa (void)
   fini_ssa_operands ();
 
   global_var = NULL_TREE;
-  BITMAP_FREE (call_clobbered_vars);
+  BITMAP_XFREE (call_clobbered_vars);
   call_clobbered_vars = NULL;
   aliases_computed_p = false;
 }