Commit b7c2e1e2 by Richard Kenner

(clear_pending_stack_adjust): Don't do optimization if -O0.

From-SVN: r10914
parent da8c1713
...@@ -9099,7 +9099,8 @@ void ...@@ -9099,7 +9099,8 @@ void
clear_pending_stack_adjust () clear_pending_stack_adjust ()
{ {
#ifdef EXIT_IGNORE_STACK #ifdef EXIT_IGNORE_STACK
if (! flag_omit_frame_pointer && EXIT_IGNORE_STACK if (optimize > 0
&& ! flag_omit_frame_pointer && EXIT_IGNORE_STACK
&& ! (DECL_INLINE (current_function_decl) && ! flag_no_inline) && ! (DECL_INLINE (current_function_decl) && ! flag_no_inline)
&& ! flag_inline_functions) && ! flag_inline_functions)
pending_stack_adjust = 0; pending_stack_adjust = 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