Commit 520f0c48 by Andrew Pinski Committed by Andrew Pinski

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
parent f472590a
2004-05-13 Andrew Pinski <pinskia@physics.uc.edu> 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 * tree-into-ssa.c (def_blocks_free): XFREE bitmaps allocated
with BITMAP_XMALLOC. with BITMAP_XMALLOC.
......
...@@ -2098,6 +2098,9 @@ rewrite_vars_out_of_ssa (bitmap vars) ...@@ -2098,6 +2098,9 @@ rewrite_vars_out_of_ssa (bitmap vars)
var_ann (referenced_var (i))->out_of_ssa_tag = 0; var_ann (referenced_var (i))->out_of_ssa_tag = 0;
}); });
/* Free the map as we are done with it. */
delete_var_map (map);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment