From: Jan Kratochvil Date: Tue, 21 Oct 2008 19:34:44 +0000 (+0000) Subject: * mips-tdep.c (mips_n32n64_fp_arg_chunk_p): Update TYPE_FIELD_STATIC X-Git-Tag: sid-snapshot-20081201~326 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5bc60cfb35beeb5e8cde48af666ce2a2b7164966;p=external%2Fbinutils.git * mips-tdep.c (mips_n32n64_fp_arg_chunk_p): Update TYPE_FIELD_STATIC removed before. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 3c11048..cc6b0bb 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2008-10-21 Jan Kratochvil + + * mips-tdep.c (mips_n32n64_fp_arg_chunk_p): Update TYPE_FIELD_STATIC + removed before. + 2008-10-20 Joel Brobecker * NEWS: Add entry mentioning thread-support on Tru64 diff --git a/gdb/mips-tdep.c b/gdb/mips-tdep.c index 8304a02..1babcce 100644 --- a/gdb/mips-tdep.c +++ b/gdb/mips-tdep.c @@ -3034,7 +3034,7 @@ mips_n32n64_fp_arg_chunk_p (struct gdbarch *gdbarch, struct type *arg_type, struct type *field_type; /* We're only looking at normal fields. */ - if (TYPE_FIELD_STATIC (arg_type, i) + if (field_is_static (&TYPE_FIELD (arg_type, i)) || (TYPE_FIELD_BITPOS (arg_type, i) % 8) != 0) continue;