From: Richard Kenner Date: Sat, 7 Dec 1996 22:35:03 +0000 (-0500) Subject: (poplevel): Don't call output_inline_function if DECL_SAVED_INSNS is X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dd103803e2ea358329566108e32c1a00a8d94ec9;p=gcc.git (poplevel): Don't call output_inline_function if DECL_SAVED_INSNS is not set. From-SVN: r13224 --- 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);