From: Andrew Pinski Date: Thu, 13 May 2004 23:06:03 +0000 (+0000) Subject: tree-ssa-live (calculate_live_on_entry): Free saw_def at the end of the function. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=623f4556de4ba117aef31e67326fcbf9152dbff6;p=gcc.git tree-ssa-live (calculate_live_on_entry): Free saw_def at the end of the function. 2004-05-13 Andrew Pinski * tree-ssa-live (calculate_live_on_entry): Free saw_def at the end of the function. From-SVN: r81814 --- diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4973fa63726..16e8da7a6ec 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,5 +1,8 @@ 2004-05-13 Andrew Pinski + * 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 931ec780279..aedcbc1e397 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; }