From: pinskia Date: Thu, 13 May 2004 15:21:53 +0000 (+0000) Subject: 2004-05-13 Andrew Pinski X-Git-Tag: upstream/4.9.2~71329 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a8ddfbad6d07775aadaafca27fcddb211308a8e4;p=platform%2Fupstream%2Flinaro-gcc.git 2004-05-13 Andrew Pinski * 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 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index f657b17..22144a6 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2004-05-13 Andrew Pinski + * tree-ssa-dom.c (tree_ssa_dominator_optimize): + Free nonzero_vars at the end of the function. + * convert.c (convert_to_integer): Make a CONVERT_EXPR when there is a need to generate code instead of a NOP_EXPR. diff --git a/gcc/tree-ssa-dom.c b/gcc/tree-ssa-dom.c index 0daf59b..ed47ea6 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