Commit c61f7d69 by Richard Kenner

(permanent_allocation): When freeing to momentary_function_firstobj,

set momentary_firstobj to be the next available location (i.e.,
momentary_function_firstobj).

From-SVN: r7845
parent 73c8c157
......@@ -519,7 +519,10 @@ permanent_allocation (function_end)
/* Free up previous temporary obstack data */
obstack_free (&temporary_obstack, temporary_firstobj);
if (function_end)
obstack_free (&momentary_obstack, momentary_function_firstobj);
{
obstack_free (&momentary_obstack, momentary_function_firstobj);
momentary_firstobj = momentary_function_firstobj;
}
else
obstack_free (&momentary_obstack, momentary_firstobj);
obstack_free (&maybepermanent_obstack, maybepermanent_firstobj);
......
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