diff options
author | Catherine Moore <clm@gcc.gnu.org> | 1999-10-29 14:49:29 -0400 |
---|---|---|
committer | Catherine Moore <clm@gcc.gnu.org> | 1999-10-29 14:49:29 -0400 |
commit | fbb57b2a94142faf4e2c2791ed5cffdd5a732c14 (patch) | |
tree | 34fabed872898cc90bc1b6bb1628ccfcf1f09a8c /gcc/function.c | |
parent | e03c5670a94ef91893c16ceee54eb12d469b7d95 (diff) | |
download | gcc-fbb57b2a94142faf4e2c2791ed5cffdd5a732c14.zip gcc-fbb57b2a94142faf4e2c2791ed5cffdd5a732c14.tar.gz gcc-fbb57b2a94142faf4e2c2791ed5cffdd5a732c14.tar.bz2 |
Fix up last patch.
From-SVN: r30265
Diffstat (limited to 'gcc/function.c')
-rw-r--r-- | gcc/function.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gcc/function.c b/gcc/function.c index fe1b5ee..f6f5d88 100644 --- a/gcc/function.c +++ b/gcc/function.c @@ -5008,14 +5008,16 @@ pad_to_arg_alignment (offset_ptr, boundary, alignment_pad) alignment_pad->var = size_binop (MINUS_EXPR, offset_ptr->var, save_var); } else - offset_ptr->constant = + { + offset_ptr->constant = #ifdef ARGS_GROW_DOWNWARD - FLOOR_ROUND (offset_ptr->constant, boundary_in_bytes); + FLOOR_ROUND (offset_ptr->constant, boundary_in_bytes); #else - CEIL_ROUND (offset_ptr->constant, boundary_in_bytes); + CEIL_ROUND (offset_ptr->constant, boundary_in_bytes); #endif - if (boundary > PARM_BOUNDARY) - alignment_pad->constant = offset_ptr->constant - save_constant; + if (boundary > PARM_BOUNDARY) + alignment_pad->constant = offset_ptr->constant - save_constant; + } } } |