Commit 51783c14 by Jason Merrill

(output_inline_function): Unset DECL_DEFER_OUTPUT on

        fndecl.

From-SVN: r7508
parent 07af9d16
...@@ -3025,6 +3025,9 @@ output_inline_function (fndecl) ...@@ -3025,6 +3025,9 @@ output_inline_function (fndecl)
set_decl_origin_self (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. */ /* Compile this function all the way down to assembly code. */
rest_of_compilation (fndecl); rest_of_compilation (fndecl);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment