2004-05-24 Randolph Chung <tausq@debian.org>
authorRandolph Chung <tausq@debian.org>
Mon, 24 May 2004 15:36:31 +0000 (15:36 +0000)
committerRandolph Chung <tausq@debian.org>
Mon, 24 May 2004 15:36:31 +0000 (15:36 +0000)
* hppa-tdep.c: Fix handling of 8-byte structures; they should not
be "small_struct".

gdb/ChangeLog
gdb/hppa-tdep.c

index cd4b05403672201e866d59ded9ce11503bc5e487..897eb2bcb79d1d91f4904fe24059b0fd967c900f 100644 (file)
@@ -1,3 +1,8 @@
+2004-05-24  Randolph Chung  <tausq@debian.org>
+
+       * hppa-tdep.c: Fix handling of 8-byte structures; they should not 
+       be "small_struct".
+
 2004-05-24  Mark Kettenis  <kettenis@gnu.org>
 
        * m68kbsd-nat.c (m68kbsd_collect_gregset): Specify correct
index 4adefeda26b629bd5af61d77bd41321e01064f31..52176ee68f3bb71f18a64d7ed147304cffbef79e 100644 (file)
@@ -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;
            }