* gimplify.c (pop_gimplify_context): Free bind_expr_stack.

From-SVN: r140280
This commit is contained in:
Jan Hubicka 2008-09-11 14:32:24 +02:00 committed by Jan Hubicka
parent 825b2fe7a8
commit a856e96f84
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2008-09-11 Jan Hubicka <jh@suse.cz>
* gimplify.c (pop_gimplify_context): Free bind_expr_stack.
2008-09-11 Jan Hubicka <jh@suse.cz>
* function.c (free_after_compilation): Call insn_locators_free.

View File

@ -216,6 +216,7 @@ pop_gimplify_context (gimple body)
gcc_assert (c && (c->bind_expr_stack == NULL
|| VEC_empty (gimple, c->bind_expr_stack)));
VEC_free (gimple, heap, c->bind_expr_stack);
gimplify_ctxp = c->prev_context;
for (t = c->temps; t ; t = TREE_CHAIN (t))