summaryrefslogtreecommitdiff
path: root/gcc/tree-outof-ssa.c
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2004-05-13 15:28:07 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2004-05-13 15:28:07 +0000
commitbb7d15b65207645998ae56ae2a8eb19465500ff0 (patch)
tree33e06e8e61eb44415150afb5220cd42649b3816a /gcc/tree-outof-ssa.c
parenteb0803a176e00ee882e34c5d80e4f3e2530b5fa1 (diff)
downloadgcc-bb7d15b65207645998ae56ae2a8eb19465500ff0.tar.gz
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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81793 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-outof-ssa.c')
-rw-r--r--gcc/tree-outof-ssa.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree-outof-ssa.c b/gcc/tree-outof-ssa.c
index 30931929d43..af5bf51f2ac 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);
+
}
}