From dd103803e2ea358329566108e32c1a00a8d94ec9 Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Sat, 7 Dec 1996 17:35:03 -0500 Subject: [PATCH] (poplevel): Don't call output_inline_function if DECL_SAVED_INSNS is not set. From-SVN: r13224 --- gcc/c-decl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gcc/c-decl.c b/gcc/c-decl.c index a3c8e29233a..b002700eb51 100644 --- a/gcc/c-decl.c +++ b/gcc/c-decl.c @@ -1003,7 +1003,7 @@ poplevel (keep, reverse, functionbody) if (DECL_ABSTRACT_ORIGIN (decl) != 0 && DECL_ABSTRACT_ORIGIN (decl) != decl) TREE_ADDRESSABLE (DECL_ABSTRACT_ORIGIN (decl)) = 1; - else + else if (DECL_SAVED_INSNS (decl) != 0) { push_function_context (); output_inline_function (decl); -- 2.30.2