tree-outof-ssa.c (rewrite_vars_out_of_ssa): Free map at the end of the block.
authorAndrew Pinski <pinskia@physics.uc.edu>
Thu, 13 May 2004 15:28:07 +0000 (15:28 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Thu, 13 May 2004 15:28:07 +0000 (08:28 -0700)
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

gcc/ChangeLog
gcc/tree-outof-ssa.c

index 166654f51d32d5d681bbcbf91780471c057eae44..812e760c08d8e75fbe78d3295a33fb086453a7e9 100644 (file)
@@ -1,5 +1,8 @@
 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
        with BITMAP_XMALLOC.
 
index 30931929d432e1f1117f26069ec6ed59619cab30..af5bf51f2acf3ed9503fcec3e7da8f9b9cd35492 100644 (file)
@@ -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);
+
     }
 }