From f7acf1c26d083e143b4c90eb69b8fb9a5d0314ab Mon Sep 17 00:00:00 2001 From: Richard Guenther Date: Fri, 16 Sep 2005 07:54:03 +0000 Subject: ipa-pure-const.c (static_execute): Free auxiliar information. 2005-09-16 Richard Guenther * ipa-pure-const.c (static_execute): Free auxiliar information. * ipa-type-escape.c (discover_unique_type): Free temporary key. * tree-vrp.c (remove_range_assertions): Free blocks_visited sbitmap. From-SVN: r104341 --- gcc/ipa-pure-const.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'gcc/ipa-pure-const.c') diff --git a/gcc/ipa-pure-const.c b/gcc/ipa-pure-const.c index eb7273c..23a7685 100644 --- a/gcc/ipa-pure-const.c +++ b/gcc/ipa-pure-const.c @@ -695,6 +695,9 @@ static_execute (void) /* Get rid of the aux information. */ if (node->aux) { + w_info = node->aux; + if (w_info->aux) + free (w_info->aux); free (node->aux); node->aux = NULL; } -- cgit v1.1