aboutsummaryrefslogtreecommitdiff
path: root/gcc/ipa-pure-const.c
diff options
context:
space:
mode:
authorRichard Guenther <rguenther@suse.de>2005-09-16 07:54:03 +0000
committerRichard Biener <rguenth@gcc.gnu.org>2005-09-16 07:54:03 +0000
commitf7acf1c26d083e143b4c90eb69b8fb9a5d0314ab (patch)
treebb7b337f4acf7e96a69bd9e5203badcb3ca0af15 /gcc/ipa-pure-const.c
parent0161fcff945297ee55f7a272813ed06ef68f9a69 (diff)
downloadgcc-f7acf1c26d083e143b4c90eb69b8fb9a5d0314ab.zip
gcc-f7acf1c26d083e143b4c90eb69b8fb9a5d0314ab.tar.gz
gcc-f7acf1c26d083e143b4c90eb69b8fb9a5d0314ab.tar.bz2
ipa-pure-const.c (static_execute): Free auxiliar information.
2005-09-16 Richard Guenther <rguenther@suse.de> * 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
Diffstat (limited to 'gcc/ipa-pure-const.c')
-rw-r--r--gcc/ipa-pure-const.c3
1 files changed, 3 insertions, 0 deletions
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;
}