diff options
author | David Edelsohn <edelsohn@gnu.org> | 1997-05-02 18:39:25 +0000 |
---|---|---|
committer | David Edelsohn <edelsohn@gnu.org> | 1997-05-02 18:39:25 +0000 |
commit | 189e03e322d6db5a1a36ce1cfdc8f76338520edf (patch) | |
tree | 44bf20fe3b68e2fe9dc77774e6e20d99143ca601 /gcc | |
parent | ed33106f8b374855104ca457f96c7aa40ce5a573 (diff) | |
download | gcc-189e03e322d6db5a1a36ce1cfdc8f76338520edf.zip gcc-189e03e322d6db5a1a36ce1cfdc8f76338520edf.tar.gz gcc-189e03e322d6db5a1a36ce1cfdc8f76338520edf.tar.bz2 |
rename ALIGN to RS6000_ALIGN to protect namespace
From-SVN: r14011
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/config/rs6000/rs6000.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/rs6000/rs6000.c b/gcc/config/rs6000/rs6000.c index c009eff..efc2577 100644 --- a/gcc/config/rs6000/rs6000.c +++ b/gcc/config/rs6000/rs6000.c @@ -3088,10 +3088,10 @@ rs6000_stack_info () info_ptr->reg_size = reg_size; info_ptr->fixed_size = RS6000_SAVE_AREA; info_ptr->varargs_size = RS6000_VARARGS_AREA; - info_ptr->vars_size = ALIGN (get_frame_size (), 8); - info_ptr->parm_size = ALIGN (current_function_outgoing_args_size, 8); + info_ptr->vars_size = RS6000_ALIGN (get_frame_size (), 8); + info_ptr->parm_size = RS6000_ALIGN (current_function_outgoing_args_size, 8); info_ptr->fpmem_size = (info_ptr->fpmem_p) ? 8 : 0; - info_ptr->save_size = ALIGN (info_ptr->fp_size + info_ptr->save_size = RS6000_ALIGN (info_ptr->fp_size + info_ptr->gp_size + info_ptr->cr_size + info_ptr->lr_size @@ -3105,7 +3105,7 @@ rs6000_stack_info () + info_ptr->varargs_size + info_ptr->fixed_size); - info_ptr->total_size = ALIGN (total_raw_size, ABI_STACK_BOUNDARY / BITS_PER_UNIT); + info_ptr->total_size = RS6000_ALIGN (total_raw_size, ABI_STACK_BOUNDARY / BITS_PER_UNIT); /* Determine if we need to allocate any stack frame. For AIX We need to push the stack if a frame pointer is needed (because |