From: Andrew Cagney Date: Sun, 13 Jan 2002 15:48:56 +0000 (+0000) Subject: * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b6649e88389ddb02e013944e2ae3acff1721b8eb;p=binutils-gdb.git * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte structures passed in registers. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1d8f0b48f3a..a99c997e32d 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-01-13 Andrew Cagney + + From Jeff law: + * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte + structures passed in registers. + 2002-01-13 Eli Zaretskii * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index af72d8c4f74..973f778f9fe 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -1815,7 +1815,8 @@ hppa_push_arguments (int nargs, struct value **args, CORE_ADDR sp, target. */ bytes_reserved = (lengths[i] + REGISTER_SIZE - 1) & -REGISTER_SIZE; - offset[i] = cum_bytes_reserved + lengths[i]; + offset[i] = (cum_bytes_reserved + + (lengths[i] > 4 ? bytes_reserved : lengths[i])); /* If the argument is a double word argument, then it needs to be double word aligned. */