Commit f7acf1c2 by Richard Guenther Committed by Richard Biener

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
parent 0161fcff
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> 2005-09-15 DJ Delorie <dj@redhat.com>
* config/m32c/m32c-lib1.S (__m32c_eh_return): Fix typo. * config/m32c/m32c-lib1.S (__m32c_eh_return): Fix typo.
......
...@@ -695,6 +695,9 @@ static_execute (void) ...@@ -695,6 +695,9 @@ static_execute (void)
/* Get rid of the aux information. */ /* Get rid of the aux information. */
if (node->aux) if (node->aux)
{ {
w_info = node->aux;
if (w_info->aux)
free (w_info->aux);
free (node->aux); free (node->aux);
node->aux = NULL; node->aux = NULL;
} }
......
...@@ -250,6 +250,7 @@ discover_unique_type (tree type) ...@@ -250,6 +250,7 @@ discover_unique_type (tree type)
} }
i++; i++;
} }
free (brand);
} }
/* Return true if TYPE is one of the type classes that we are willing /* Return true if TYPE is one of the type classes that we are willing
......
...@@ -2784,6 +2784,8 @@ remove_range_assertions (void) ...@@ -2784,6 +2784,8 @@ remove_range_assertions (void)
else else
bsi_next (&si); bsi_next (&si);
} }
sbitmap_free (blocks_visited);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment