aboutsummaryrefslogtreecommitdiff
path: root/gdb/python
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2021-09-26 16:34:28 -0400
committerSimon Marchi <simon.marchi@polymtl.ca>2021-10-29 16:44:21 -0400
commit2ad53ea10c14445d6074814bbdfe46bd787038cb (patch)
tree754f8b3ea284ae5ef76887619d2fb468b8067bd2 /gdb/python
parentd8557c3d229589c690a1bef92be434eb663e3bb6 (diff)
downloadgdb-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/python')
-rw-r--r--gdb/python/py-type.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/python/py-type.c b/gdb/python/py-type.c
index f0f8357..7980bec 100644
--- a/gdb/python/py-type.c
+++ b/gdb/python/py-type.c
@@ -189,7 +189,7 @@ convert_field (struct type *type, int field)
}
else
{
- if (TYPE_FIELD_LOC_KIND (type, field) == FIELD_LOC_KIND_DWARF_BLOCK)
+ if (type->field (field).loc_kind () == FIELD_LOC_KIND_DWARF_BLOCK)
arg = gdbpy_ref<>::new_reference (Py_None);
else
arg = gdb_py_object_from_longest (TYPE_FIELD_BITPOS (type, field));