forked from Imagelibrary/binutils-gdb
2004-04-03 Andrew Cagney <cagney@redhat.com>
* config/pa/tm-hppa.h (REG_PARM_STACK_SPACE): Delete. * config/pa/tm-hppa64.h (PA20W_CALLING_CONVENTIONS) (REG_PARM_STACK_SPACE): Delete. * hppa-tdep.c (hppa64_push_dummy_call, hppa32_push_dummy_call): Inline reference to REG_PARM_STACK_SPACE.
This commit is contained in:
@@ -898,8 +898,7 @@ hppa32_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
|
||||
space allocations for outgoing arguments. The ABI also
|
||||
mandates minimum stack alignments which we must
|
||||
preserve. */
|
||||
param_end = struct_end + max (align_up (param_ptr, 8),
|
||||
REG_PARM_STACK_SPACE);
|
||||
param_end = struct_end + max (align_up (param_ptr, 8), 16);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1022,8 +1021,7 @@ hppa64_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr,
|
||||
space allocations for outgoing arguments. The ABI also
|
||||
mandates minimum stack alignments which we must
|
||||
preserve. */
|
||||
param_end = struct_end + max (align_up (param_ptr, 16),
|
||||
REG_PARM_STACK_SPACE);
|
||||
param_end = struct_end + max (align_up (param_ptr, 16), 64);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user