diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-26 16:34:28 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-10-29 16:44:21 -0400 |
commit | 2ad53ea10c14445d6074814bbdfe46bd787038cb (patch) | |
tree | 754f8b3ea284ae5ef76887619d2fb468b8067bd2 /gdb/riscv-tdep.c | |
parent | d8557c3d229589c690a1bef92be434eb663e3bb6 (diff) | |
download | gdb-2ad53ea10c14445d6074814bbdfe46bd787038cb.zip gdb-2ad53ea10c14445d6074814bbdfe46bd787038cb.tar.gz gdb-2ad53ea10c14445d6074814bbdfe46bd787038cb.tar.bz2 |
gdb: remove TYPE_FIELD_LOC_KIND
Remove TYPE_FIELD_LOC_KIND, replace its uses with type::field +
field::loc_kind.
Change-Id: Ib124a26365df82ac1d23df7962d954192913bd90
Diffstat (limited to 'gdb/riscv-tdep.c')
-rw-r--r-- | gdb/riscv-tdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/riscv-tdep.c b/gdb/riscv-tdep.c index 4c2557f..069aebf 100644 --- a/gdb/riscv-tdep.c +++ b/gdb/riscv-tdep.c @@ -2542,7 +2542,7 @@ riscv_struct_info::analyse_inner (struct type *type, int offset) for (i = 0; i < count; ++i) { - if (TYPE_FIELD_LOC_KIND (type, i) != FIELD_LOC_KIND_BITPOS) + if (type->field (i).loc_kind () != FIELD_LOC_KIND_BITPOS) continue; struct type *field_type = type->field (i).type (); |