diff options
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/tree-ssa-live.c | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4973fa6..16e8da7 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -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. diff --git a/gcc/tree-ssa-live.c b/gcc/tree-ssa-live.c index 931ec78..aedcbc1 100644 --- a/gcc/tree-ssa-live.c +++ b/gcc/tree-ssa-live.c @@ -738,6 +738,8 @@ calculate_live_on_entry (var_map map) abort (); #endif + BITMAP_XFREE (saw_def); + return live; } |