OSDN Git Service

2004-05-13 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 May 2004 23:06:03 +0000 (23:06 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 13 May 2004 23:06:03 +0000 (23:06 +0000)
        * tree-ssa-live (calculate_live_on_entry): Free saw_def
        at the end of the function.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@81814 138bc75d-0d04-0410-961f-82ee72b054a4

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

index 4973fa6..16e8da7 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 931ec78..aedcbc1 100644 (file)
@@ -738,6 +738,8 @@ calculate_live_on_entry (var_map map)
     abort ();
 #endif
 
+  BITMAP_XFREE (saw_def);
+
   return live;
 }