diff options
author | YamaArashi <shadow962@live.com> | 2016-02-15 03:34:47 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-15 03:34:47 -0800 |
commit | 526fd830c2ce8da3397bc08a267db5aea78db6f3 (patch) | |
tree | b9965d4ae9ca0c1f5f68ce71bfe4108d73f31d77 /gcc/expr.c | |
parent | dae4baf0b704d1b566bbff41774f220b00bf365b (diff) |
remove exit_ignore_stack ifdefs
Diffstat (limited to 'gcc/expr.c')
-rwxr-xr-x | gcc/expr.c | 19 |
1 files changed, 0 insertions, 19 deletions
@@ -10316,25 +10316,6 @@ init_pending_stack_adjust () pending_stack_adjust = 0; } -/* When exiting from function, if safe, clear out any pending stack adjust - so the adjustment won't get done. - - Note, if the current function calls alloca, then it must have a - frame pointer regardless of the value of flag_omit_frame_pointer. */ - -void -clear_pending_stack_adjust () -{ -#ifdef EXIT_IGNORE_STACK - if (optimize > 0 - && (! flag_omit_frame_pointer || current_function_calls_alloca) - && EXIT_IGNORE_STACK - && ! (DECL_INLINE (current_function_decl) && ! flag_no_inline) - && ! flag_inline_functions) - pending_stack_adjust = 0; -#endif -} - /* Pop any previously-pushed arguments that have not been popped yet. */ void |