diff options
author | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-13 15:21:53 +0000 |
---|---|---|
committer | pinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-13 15:21:53 +0000 |
commit | a8ddfbad6d07775aadaafca27fcddb211308a8e4 (patch) | |
tree | 53586b155a84f0323b863cd22602bd4685d6a860 /gcc/tree-ssa-dom.c | |
parent | f07af32fb27f8f4c19dbb83c8e738c89b21df93b (diff) | |
download | gcc-a8ddfbad6d07775aadaafca27fcddb211308a8e4.tar.gz |
2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
* tree-ssa-dom.c (tree_ssa_dominator_optimize):
Free nonzero_vars at the end of the function.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81788 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree-ssa-dom.c')
-rw-r--r-- | gcc/tree-ssa-dom.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 0daf59b47cd..ed47ea6c2c2 100644 --- a/gcc/tree-ssa-dom.c +++ b/gcc/tree-ssa-dom.c @@ -630,6 +630,9 @@ tree_ssa_dominator_optimize (void) /* And finalize the dominator walker. */ fini_walk_dominator_tree (&walk_data); + + /* Free nonzero_vars. */ + BITMAP_XFREE (nonzero_vars); } static bool |