tree-ssa-live (calculate_live_on_entry): Free saw_def at the end of the function.
authorAndrew Pinski <pinskia@physics.uc.edu>
Thu, 13 May 2004 23:06:03 +0000 (23:06 +0000)
committerAndrew Pinski <pinskia@gcc.gnu.org>
Thu, 13 May 2004 23:06:03 +0000 (16:06 -0700)
2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>

        * tree-ssa-live (calculate_live_on_entry): Free saw_def
        at the end of the function.

From-SVN: r81814

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

index 4973fa63726aaeb7145707ac7a72007f475281e1..16e8da7a6ec35c18021f37164f466bc02b5010b6 100644 (file)
@@ -1,5 +1,8 @@
 2004-05-13  Andrew Pinski  <pinskia@physics.uc.edu>
 
+       * tree-ssa-live (calculate_live_on_entry): Free saw_def
+       at the end of the function.
+
        * tree-ssa-dce.c (perform_tree_ssa_dce): Free
        el at the end of the function.
 
index 931ec780279c52cc45f64930449f203ee988bc53..aedcbc1e3979eef7cc43d101e9f0bb64beb1a68a 100644 (file)
@@ -738,6 +738,8 @@ calculate_live_on_entry (var_map map)
     abort ();
 #endif
 
+  BITMAP_XFREE (saw_def);
+
   return live;
 }