Commit 4433e339 by Richard Henderson Committed by Richard Henderson

function.c (assign_parms/STACK_BYTES): Revert last change, and that of 19 Nov.

        * function.c (assign_parms/STACK_BYTES): Revert last change,
        and that of 19 Nov.

From-SVN: r26624
parent fb5eebb9
Sun Apr 25 13:06:13 1999 Richard Henderson <rth@cygnus.com>
* function.c (assign_parms/STACK_BYTES): Revert last change,
and that of 19 Nov.
Sun Apr 25 12:30:50 1999 Richard Henderson <rth@cygnus.com> Sun Apr 25 12:30:50 1999 Richard Henderson <rth@cygnus.com>
* calls.c (emit_call_1): New arg rounded_stack_size; update callers. * calls.c (emit_call_1): New arg rounded_stack_size; update callers.
......
...@@ -5059,6 +5059,14 @@ assign_parms (fndecl, second_time) ...@@ -5059,6 +5059,14 @@ assign_parms (fndecl, second_time)
#endif #endif
#endif #endif
#ifdef STACK_BOUNDARY
#define STACK_BYTES (STACK_BOUNDARY / BITS_PER_UNIT)
current_function_args_size
= ((current_function_args_size + STACK_BYTES - 1)
/ STACK_BYTES) * STACK_BYTES;
#endif
#ifdef ARGS_GROW_DOWNWARD #ifdef ARGS_GROW_DOWNWARD
current_function_arg_offset_rtx current_function_arg_offset_rtx
= (stack_args_size.var == 0 ? GEN_INT (-stack_args_size.constant) = (stack_args_size.var == 0 ? GEN_INT (-stack_args_size.constant)
......
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