Commit 9ccd47de by Per Bothner

tree.c (permanent_allocation): Pop function_maybepermanent_obstack, not…

tree.c (permanent_allocation): Pop function_maybepermanent_obstack, not hardwired &maybepermanent_obstack.

* tree.c (permanent_allocation):  Pop function_maybepermanent_obstack,
not hardwired &maybepermanent_obstack.

From-SVN: r8938
parent 290c7d58
......@@ -533,7 +533,7 @@ permanent_allocation (function_end)
}
else
obstack_free (&momentary_obstack, momentary_firstobj);
obstack_free (&maybepermanent_obstack, maybepermanent_firstobj);
obstack_free (function_maybepermanent_obstack, maybepermanent_firstobj);
obstack_free (&temp_decl_obstack, temp_decl_firstobj);
current_obstack = &permanent_obstack;
......
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