diff options
author | Andrew Cagney <cagney@redhat.com> | 2002-01-13 15:48:56 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2002-01-13 15:48:56 +0000 |
commit | b6649e88389ddb02e013944e2ae3acff1721b8eb (patch) | |
tree | d66d0d84ab7b1df1e1e1be50fdfd431c94d8c4a4 /gdb | |
parent | 82cc503325ef72ccad4d8eaf4a5a23228d778802 (diff) | |
download | gdb-b6649e88389ddb02e013944e2ae3acff1721b8eb.zip gdb-b6649e88389ddb02e013944e2ae3acff1721b8eb.tar.gz gdb-b6649e88389ddb02e013944e2ae3acff1721b8eb.tar.bz2 |
* hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte
structures passed in registers.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/hppa-tdep.c | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 1d8f0b4..a99c997 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2002-01-13 Andrew Cagney <ac131313@redhat.com> + + From Jeff law: + * hppa-tdep.c (hppa_push_arguments): Correct handling of 5-7 byte + structures passed in registers. + 2002-01-13 Eli Zaretskii <eliz@is.elta.co.il> * go32-nat.c (save_npx) [__DJGPP_MINOR__ < 3]: Remove extraneous diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index af72d8c..973f778 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. */ |