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:
Richard Guenther 2005-09-16 07:54:03 +00:00 committed by Richard Biener
parent 0161fcff94
commit f7acf1c26d
4 changed files with 12 additions and 0 deletions

View File

@ -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.

View File

@ -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;
}

View File

@ -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

View File

@ -2784,6 +2784,8 @@ remove_range_assertions (void)
else
bsi_next (&si);
}
sbitmap_free (blocks_visited);
}