mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-28 15:18:37 +08:00
gdb: remove TYPE_FIELD_STATIC_PHYSNAME
Remove TYPE_FIELD_STATIC_PHYSNAME, replace with type::field + field::loc_physname. Change-Id: Ie35d446b67dd1d02f39998b406001bdb7e6d5abb
This commit is contained in:
@ -614,7 +614,7 @@ compile_cplus_convert_struct_or_union_members
|
||||
|
||||
case FIELD_LOC_KIND_PHYSNAME:
|
||||
{
|
||||
const char *physname = TYPE_FIELD_STATIC_PHYSNAME (type, i);
|
||||
const char *physname = type->field (i).loc_physname ();
|
||||
struct block_symbol sym
|
||||
= lookup_symbol (physname, instance->block (),
|
||||
VAR_DOMAIN, nullptr);
|
||||
|
Reference in New Issue
Block a user