Commit 7d2e8eff by Jason Merrill Committed by Jason Merrill

integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT before calling…

integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT before calling rest_of_compilation.

        * integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
        before calling rest_of_compilation.

From-SVN: r33441
parent 70576b75
2000-04-26 Jason Merrill <jason@casey.cygnus.com>
* integrate.c (output_inline_function): Do clear DECL_DEFER_OUTPUT
before calling rest_of_compilation.
2000-04-26 Andreas Jaeger <aj@suse.de> 2000-04-26 Andreas Jaeger <aj@suse.de>
* config/mips/linux.h: Remove erroneous commit of #if 0/#endif in * config/mips/linux.h: Remove erroneous commit of #if 0/#endif in
......
...@@ -2737,12 +2737,12 @@ output_inline_function (fndecl) ...@@ -2737,12 +2737,12 @@ output_inline_function (fndecl)
set_new_last_label_num (f->inl_max_label_num); set_new_last_label_num (f->inl_max_label_num);
/* Compile this function all the way down to assembly code. */
rest_of_compilation (fndecl);
/* We're not deferring this any longer. */ /* We're not deferring this any longer. */
DECL_DEFER_OUTPUT (fndecl) = 0; DECL_DEFER_OUTPUT (fndecl) = 0;
/* Compile this function all the way down to assembly code. */
rest_of_compilation (fndecl);
/* We can't inline this anymore. */ /* We can't inline this anymore. */
f->inlinable = 0; f->inlinable = 0;
DECL_INLINE (fndecl) = 0; DECL_INLINE (fndecl) = 0;
......
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