From: Jason Merrill Date: Thu, 16 Jun 1994 23:38:08 +0000 (+0000) Subject: (output_inline_function): Unset DECL_DEFER_OUTPUT on X-Git-Tag: misc/cutover-egcs-0~6435 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51783c14289f94b543b39eedf47d99916dbf3f91;p=thirdparty%2Fgcc.git (output_inline_function): Unset DECL_DEFER_OUTPUT on fndecl. From-SVN: r7508 --- diff --git a/gcc/integrate.c b/gcc/integrate.c index bf0c28549142..63b150d0e237 100644 --- a/gcc/integrate.c +++ b/gcc/integrate.c @@ -3025,6 +3025,9 @@ output_inline_function (fndecl) set_decl_origin_self (fndecl); + /* We're not deferring this any longer. */ + DECL_DEFER_OUTPUT (fndecl) = 0; + /* Compile this function all the way down to assembly code. */ rest_of_compilation (fndecl);