diff options
author | Simon Marchi <simon.marchi@efficios.com> | 2023-09-29 14:24:35 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@efficios.com> | 2023-10-10 10:44:35 -0400 |
commit | 27b1f19f8f5cc46faba4bb2142547df074a82a29 (patch) | |
tree | 732d6d243fc7f90780e2a7b469cf9e97990d47f4 /gdb/amd-dbgapi-target.c | |
parent | ae0d827fa483c4e569803d99f8dff14794c63a17 (diff) | |
download | binutils-27b1f19f8f5cc46faba4bb2142547df074a82a29.zip binutils-27b1f19f8f5cc46faba4bb2142547df074a82a29.tar.gz binutils-27b1f19f8f5cc46faba4bb2142547df074a82a29.tar.bz2 |
gdb: add inferior::{arch, set_arch}
Make the inferior's gdbarch field private, and add getters and setters.
This helped me by allowing putting breakpoints on set_arch to know when
the inferior's arch was set. A subsequent patch in this series also
adds more things in set_arch.
Change-Id: I0005bd1ef4cd6b612af501201cec44e457998eec
Reviewed-By: John Baldwin <jhb@FreeBSD.org>
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/amd-dbgapi-target.c')
-rw-r--r-- | gdb/amd-dbgapi-target.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/amd-dbgapi-target.c b/gdb/amd-dbgapi-target.c index e578358..22c8126 100644 --- a/gdb/amd-dbgapi-target.c +++ b/gdb/amd-dbgapi-target.c @@ -430,7 +430,7 @@ amd_dbgapi_target_breakpoint::check_status (struct bpstat *bs) if (it == info->breakpoint_map.end ()) error (_("Could not find breakpoint_id for breakpoint at %s"), - paddress (inf->gdbarch, bs->bp_location_at->address)); + paddress (inf->arch (), bs->bp_location_at->address)); amd_dbgapi_breakpoint_id_t breakpoint_id { it->first }; amd_dbgapi_breakpoint_action_t action; @@ -443,7 +443,7 @@ amd_dbgapi_target_breakpoint::check_status (struct bpstat *bs) if (status != AMD_DBGAPI_STATUS_SUCCESS) error (_("amd_dbgapi_report_breakpoint_hit failed for breakpoint %ld " "at %s (%s)"), - breakpoint_id.handle, paddress (inf->gdbarch, bs->bp_location_at->address), + breakpoint_id.handle, paddress (inf->arch (), bs->bp_location_at->address), get_status_string (status)); if (action == AMD_DBGAPI_BREAKPOINT_ACTION_RESUME) |