Commit a856e96f by Jan Hubicka Committed by Jan Hubicka

* gimplify.c (pop_gimplify_context): Free bind_expr_stack.

From-SVN: r140280
parent 825b2fe7
2008-09-11 Jan Hubicka <jh@suse.cz> 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. * function.c (free_after_compilation): Call insn_locators_free.
* cfglayout.c (insn_locators_free): New function. * cfglayout.c (insn_locators_free): New function.
* rtl.h (insn_locators_free): Declare. * rtl.h (insn_locators_free): Declare.
......
...@@ -216,6 +216,7 @@ pop_gimplify_context (gimple body) ...@@ -216,6 +216,7 @@ pop_gimplify_context (gimple body)
gcc_assert (c && (c->bind_expr_stack == NULL gcc_assert (c && (c->bind_expr_stack == NULL
|| VEC_empty (gimple, c->bind_expr_stack))); || VEC_empty (gimple, c->bind_expr_stack)));
VEC_free (gimple, heap, c->bind_expr_stack);
gimplify_ctxp = c->prev_context; gimplify_ctxp = c->prev_context;
for (t = c->temps; t ; t = TREE_CHAIN (t)) for (t = c->temps; t ; t = TREE_CHAIN (t))
......
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