gdb: remove TYPE_FIELD_BITPOS
Remove TYPE_FIELD_BITPOS, replace its uses with type::field + field::loc_bitpos. Change-Id: Iccd8d5a77e5352843a837babaa6bd284162e0320
This commit is contained in:
parent
2ad53ea10c
commit
b610c04548
30 changed files with 87 additions and 93 deletions
|
@ -192,7 +192,7 @@ convert_field (struct type *type, int field)
|
|||
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));
|
||||
arg = gdb_py_object_from_longest (type->field (field).loc_bitpos ());
|
||||
attrstring = "bitpos";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue