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

2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>

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

From-SVN: r81817
This commit is contained in:
Andrew Pinski 2004-05-13 23:13:14 +00:00 committed by Andrew Pinski
parent 979837429d
commit 6b9bee8ee6
2 changed files with 4 additions and 1 deletions

View 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.

View 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;
}