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
This commit is contained in:
Richard Henderson 1999-04-25 06:09:33 -07:00 committed by Richard Henderson
parent fb5eebb932
commit 4433e33948
2 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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>
* calls.c (emit_call_1): New arg rounded_stack_size; update callers.

View File

@ -5059,6 +5059,14 @@ assign_parms (fndecl, second_time)
#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
current_function_arg_offset_rtx
= (stack_args_size.var == 0 ? GEN_INT (-stack_args_size.constant)