tree-ssa-ter.c (free_temp_expr_table): Free num_in_part and new_replaceable_dependencies.

2008-01-12  Sebastian Pop  <sebastian.pop@amd.com>

	* tree-ssa-ter.c (free_temp_expr_table): Free num_in_part and
	new_replaceable_dependencies.

From-SVN: r131501
This commit is contained in:
Sebastian Pop 2008-01-13 04:27:46 +00:00 committed by Sebastian Pop
parent a4c07f2d9f
commit 42b22da884
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2008-01-12 Sebastian Pop <sebastian.pop@amd.com>
* tree-ssa-ter.c (free_temp_expr_table): Free num_in_part and
new_replaceable_dependencies.
2008-01-12 Doug Kwan <dougkwan@google.com>
* c-decl.c: (grokdeclarator): Use OPT_Wignored_qualifiers

View file

@ -227,6 +227,7 @@ free_temp_expr_table (temp_expr_table_p t)
#endif
BITMAP_FREE (t->partition_in_use);
BITMAP_FREE (t->new_replaceable_dependencies);
for (i = 0; i <= num_ssa_names; i++)
if (t->expr_decl_uids[i])
@ -235,6 +236,7 @@ free_temp_expr_table (temp_expr_table_p t)
free (t->kill_list);
free (t->partition_dependencies);
free (t->num_in_part);
if (t->replaceable_expressions)
ret = t->replaceable_expressions;