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 db862e8..c09824f 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;