Commit 5cf5baa2 authored by geoffk's avatar geoffk
Browse files

* function.c (pad_to_arg_alignment): Move 'boundary_in_bytes'

	definition to above SPARC_STACK_BOUNDARY_HACK.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@72241 138bc75d-0d04-0410-961f-82ee72b054a4
parent 68130ef1
2003-10-08 Geoffrey Keating <geoffk@apple.com>
* function.c (pad_to_arg_alignment): Move 'boundary_in_bytes'
definition to above SPARC_STACK_BOUNDARY_HACK.
2003-10-08 Jason Merrill <jason@redhat.com>
* c-pretty-print.c (pp_c_postfix_expression)
......
......@@ -5511,6 +5511,7 @@ pad_to_arg_alignment (struct args_size *offset_ptr, int boundary,
{
tree save_var = NULL_TREE;
HOST_WIDE_INT save_constant = 0;
int boundary_in_bytes = boundary / BITS_PER_UNIT;
HOST_WIDE_INT sp_offset = STACK_POINTER_OFFSET;
#ifdef SPARC_STACK_BOUNDARY_HACK
......@@ -5522,8 +5523,6 @@ pad_to_arg_alignment (struct args_size *offset_ptr, int boundary,
sp_offset = 0;
#endif
int boundary_in_bytes = boundary / BITS_PER_UNIT;
if (boundary > PARM_BOUNDARY && boundary > STACK_BOUNDARY)
{
save_var = offset_ptr->var;
......
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