From: Randolph Chung Date: Mon, 24 May 2004 15:36:31 +0000 (+0000) Subject: 2004-05-24 Randolph Chung X-Git-Tag: gprof-pre-ansify-2004-05-26~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1b07b470630c522f6c6ee5d4522ca6d0a6ab2d89;p=external%2Fbinutils.git 2004-05-24 Randolph Chung * hppa-tdep.c: Fix handling of 8-byte structures; they should not be "small_struct". --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index cd4b054..897eb2b 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2004-05-24 Randolph Chung + + * hppa-tdep.c: Fix handling of 8-byte structures; they should not + be "small_struct". + 2004-05-24 Mark Kettenis * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct diff --git a/gdb/hppa-tdep.c b/gdb/hppa-tdep.c index 4adefed..52176ee 100644 --- a/gdb/hppa-tdep.c +++ b/gdb/hppa-tdep.c @@ -790,7 +790,7 @@ hppa32_push_dummy_call (struct gdbarch *gdbarch, CORE_ADDR func_addr, the higher-ordered word is stored in the lower-ordered argument, and even though it is a 8-byte quantity the registers need not be 8-byte aligned. */ - if (param_len > 4) + if (param_len > 4 && param_len < 8) small_struct = 1; }