From 9ccd47de7114bb9e60d7c263a465c699cee7367f Mon Sep 17 00:00:00 2001 From: Per Bothner Date: Mon, 13 Feb 1995 12:55:17 -0800 Subject: [PATCH] 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 --- gcc/tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/tree.c b/gcc/tree.c index db862e81893..c09824f18e6 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; -- 2.30.2