diff options
Diffstat (limited to 'gdb/loongarch-tdep.c')
-rw-r--r-- | gdb/loongarch-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/loongarch-tdep.c b/gdb/loongarch-tdep.c index 74f14c4..5739af6 100644 --- a/gdb/loongarch-tdep.c +++ b/gdb/loongarch-tdep.c @@ -521,7 +521,7 @@ compute_struct_member (struct type *type, for (int i = 0; i < type->num_fields (); i++) { /* Ignore any static fields. */ - if (field_is_static (&type->field (i))) + if (type->field (i).is_static ()) continue; struct type *field_type = check_typedef (type->field (i).type ()); |