tree-outof-ssa.c (rewrite_vars_out_of_ssa): Free map at the end of the block.

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

        * tree-outof-ssa.c (rewrite_vars_out_of_ssa): Free map at
        the end of the block.

From-SVN: r81793
This commit is contained in:
Andrew Pinski 2004-05-13 15:28:07 +00:00 committed by Andrew Pinski
parent f472590a2a
commit 520f0c4803
2 changed files with 6 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
* tree-outof-ssa.c (rewrite_vars_out_of_ssa): Free map at
the end of the block.
* tree-into-ssa.c (def_blocks_free): XFREE bitmaps allocated
with BITMAP_XMALLOC.

View File

@ -2098,6 +2098,9 @@ rewrite_vars_out_of_ssa (bitmap vars)
var_ann (referenced_var (i))->out_of_ssa_tag = 0;
});
/* Free the map as we are done with it. */
delete_var_map (map);
}
}