diff options
author | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-13 20:55:17 +0000 |
---|---|---|
committer | bothner <bothner@138bc75d-0d04-0410-961f-82ee72b054a4> | 1995-02-13 20:55:17 +0000 |
commit | 072a7a1935a61414c792b4ca95aa7162d382f668 (patch) | |
tree | e7155dc4c809d1595054f4fae6d0f67fef5c5866 /gcc/tree.c | |
parent | 8e15447788a24306d3108b39e18ff75b9ae64b0d (diff) | |
download | gcc-072a7a1935a61414c792b4ca95aa7162d382f668.tar.gz |
* tree.c (permanent_allocation): Pop function_maybepermanent_obstack,
not hardwired &maybepermanent_obstack.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@8938 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/tree.c')
-rw-r--r-- | gcc/tree.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |