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
This commit is contained in:
parent
0161fcff94
commit
f7acf1c26d
@ -1,3 +1,9 @@
|
||||
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.
|
||||
|
||||
2005-09-15 DJ Delorie <dj@redhat.com>
|
||||
|
||||
* config/m32c/m32c-lib1.S (__m32c_eh_return): Fix typo.
|
||||
|
@ -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;
|
||||
}
|
||||
|
@ -250,6 +250,7 @@ discover_unique_type (tree type)
|
||||
}
|
||||
i++;
|
||||
}
|
||||
free (brand);
|
||||
}
|
||||
|
||||
/* Return true if TYPE is one of the type classes that we are willing
|
||||
|
@ -2784,6 +2784,8 @@ remove_range_assertions (void)
|
||||
else
|
||||
bsi_next (&si);
|
||||
}
|
||||
|
||||
sbitmap_free (blocks_visited);
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user