(poplevel): Don't call output_inline_function if DECL_SAVED_INSNS is
authorRichard Kenner <kenner@gcc.gnu.org>
Sat, 7 Dec 1996 22:35:03 +0000 (17:35 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Sat, 7 Dec 1996 22:35:03 +0000 (17:35 -0500)
not set.

From-SVN: r13224

gcc/c-decl.c

index a3c8e29..b002700 100644 (file)
@@ -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);