From 623f4556de4ba117aef31e67326fcbf9152dbff6 Mon Sep 17 00:00:00 2001 From: Andrew Pinski Date: Thu, 13 May 2004 23:06:03 +0000 Subject: [PATCH] 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 --- gcc/ChangeLog | 3 +++ gcc/tree-ssa-live.c | 2 ++ 2 files changed, 5 insertions(+) diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 4973fa63726a..16e8da7a6ec3 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 931ec780279c..aedcbc1e3979 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; } -- 2.43.5