diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2021-09-26 21:07:04 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@polymtl.ca> | 2021-10-29 16:44:45 -0400 |
commit | e06c3e112eefd357b2531b53d0d8e87619fceb95 (patch) | |
tree | 926ac85e89d2d2d0af6c9b1b9376dd57d63feedd /gdb/compile | |
parent | fcbbbd90f04a137e92681d6c6dcbea95688b0c5a (diff) | |
download | gdb-e06c3e112eefd357b2531b53d0d8e87619fceb95.zip gdb-e06c3e112eefd357b2531b53d0d8e87619fceb95.tar.gz gdb-e06c3e112eefd357b2531b53d0d8e87619fceb95.tar.bz2 |
gdb: remove TYPE_FIELD_STATIC_PHYSADDR
Remove TYPE_FIELD_STATIC_PHYSADDR replace with type::field +
field::loc_physaddr.
Change-Id: Ica9bc4a48f34750ec82ec86c298d3ecece81bcbd
Diffstat (limited to 'gdb/compile')
-rw-r--r-- | gdb/compile/compile-cplus-types.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/compile/compile-cplus-types.c b/gdb/compile/compile-cplus-types.c index 31634a9..cd389c8 100644 --- a/gdb/compile/compile-cplus-types.c +++ b/gdb/compile/compile-cplus-types.c @@ -603,7 +603,7 @@ compile_cplus_convert_struct_or_union_members { case FIELD_LOC_KIND_PHYSADDR: { - physaddr = TYPE_FIELD_STATIC_PHYSADDR (type, i); + physaddr = type->field (i).loc_physaddr (); instance->plugin ().build_decl ("field physaddr", field_name, |