]> gcc.gnu.org Git - gcc.git/commitdiff
tree.c (permanent_allocation): Pop function_maybepermanent_obstack, not hardwired...
authorPer Bothner <bothner@gcc.gnu.org>
Mon, 13 Feb 1995 20:55:17 +0000 (12:55 -0800)
committerPer Bothner <bothner@gcc.gnu.org>
Mon, 13 Feb 1995 20:55:17 +0000 (12:55 -0800)
* tree.c (permanent_allocation):  Pop function_maybepermanent_obstack,
not hardwired &maybepermanent_obstack.

From-SVN: r8938

gcc/tree.c

index db862e818938db722d2c7e98a7533530a0079247..c09824f18e660d442ab3115c0db57d92082a5d3f 100644 (file)
@@ -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;
This page took 0.072923 seconds and 5 git commands to generate.