]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* mips-tdep.c (mips_n32n64_fp_arg_chunk_p): Update TYPE_FIELD_STATIC
authorJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 21 Oct 2008 19:34:44 +0000 (19:34 +0000)
committerJan Kratochvil <jan.kratochvil@redhat.com>
Tue, 21 Oct 2008 19:34:44 +0000 (19:34 +0000)
removed before.

gdb/ChangeLog
gdb/mips-tdep.c

index 3c110480b4f189ea1f9d42919fad71241319c5f8..cc6b0bb2e02766c0d79b3ef1073602bb7d61565c 100644 (file)
@@ -1,3 +1,8 @@
+2008-10-21  Jan Kratochvil  <jan.kratochvil@redhat.com>
+
+       * mips-tdep.c (mips_n32n64_fp_arg_chunk_p): Update TYPE_FIELD_STATIC
+       removed before.
+
 2008-10-20  Joel Brobecker  <brobecker@adacore.com>
 
        * NEWS: Add entry mentioning thread-support on Tru64
index 8304a02e27bc064b0488da09afcf8d44facc9ecc..1babccec2358cadb5c3da501399080e6ccc8396e 100644 (file)
@@ -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;