diff options
author | Andrew Pinski <pinskia@physics.uc.edu> | 2004-05-13 15:28:07 +0000 |
---|---|---|
committer | Andrew Pinski <pinskia@gcc.gnu.org> | 2004-05-13 08:28:07 -0700 |
commit | 520f0c480386a790eb5a99a1d3295dd234ea4bce (patch) | |
tree | 33e06e8e61eb44415150afb5220cd42649b3816a /gcc/tree-outof-ssa.c | |
parent | f472590a2abf807ef1574f109b44d6c9c120b9c1 (diff) | |
download | gcc-520f0c480386a790eb5a99a1d3295dd234ea4bce.zip gcc-520f0c480386a790eb5a99a1d3295dd234ea4bce.tar.gz gcc-520f0c480386a790eb5a99a1d3295dd234ea4bce.tar.bz2 |
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
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r-- | gcc/tree-outof-ssa.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c index 3093192..af5bf51 100644 --- a/gcc/tree-outof-ssa.c +++ b/gcc/tree-outof-ssa.c @@ -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); + } } |