From: Per Bothner Date: Mon, 13 Feb 1995 20:55:17 +0000 (-0800) Subject: tree.c (permanent_allocation): Pop function_maybepermanent_obstack, not hardwired... X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9ccd47de7114bb9e60d7c263a465c699cee7367f;p=platform%2Fupstream%2Fgcc.git 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 --- diff --git a/gcc/tree.c b/gcc/tree.c index db862e8..c09824f 100644 --- a/gcc/tree.c +++ b/gcc/tree.c @@ -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;