From 27ed242c1dee0f4fdcf25d7eee287b5d7342e43d Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Fri, 25 Aug 1995 07:31:37 -0400 Subject: [PATCH] (output_inline_function): Switch to function obstack. From-SVN: r10270 --- gcc/integrate.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gcc/integrate.c b/gcc/integrate.c index dfc33f960bc..9325dd769ac 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -3003,6 +3003,10 @@ output_inline_function (fndecl) return; } + /* Things we allocate from here on are part of this function, not + permanent. */ + temporary_allocation (); + head = DECL_SAVED_INSNS (fndecl); current_function_decl = fndecl; -- 2.30.2