aboutsummaryrefslogtreecommitdiff
path: root/gdb/break-catch-throw.c
diff options
context:
space:
mode:
authorAlan Hayward <alan.hayward@arm.com>2019-08-21 15:24:02 +0100
committerAlan Hayward <alan.hayward@arm.com>2019-09-02 13:58:48 +0100
commitfe01123efb30a273645dc194ae2100197f93a00a (patch)
tree517d24874f46e34adf2c554f39e2a60a27c29efc /gdb/break-catch-throw.c
parente661ef01e50a2cb38c006b0fe444a1b41bfc9400 (diff)
downloadfsf-binutils-gdb-fe01123efb30a273645dc194ae2100197f93a00a.zip
fsf-binutils-gdb-fe01123efb30a273645dc194ae2100197f93a00a.tar.gz
fsf-binutils-gdb-fe01123efb30a273645dc194ae2100197f93a00a.tar.bz2
Use gdbarch for probe::get_argument_count
The probe function get_argument_count does not need a frame, only the current gdbarch. Switch the code to pass gdbarch instead. No functional changes. gdb/ChangeLog: * break-catch-throw.c (fetch_probe_arguments): Use gdbarch. * dtrace-probe.c (dtrace_probe::get_argument_count): Likewise. * probe.c (probe_safe_evaluate_at_pc) (compute_probe_arg) (compile_probe_arg): Likewise. * probe.h (get_argument_count): Likewise. * solib-svr4.c (solib_event_probe_action): Likewise. * stap-probe.c (stap_probe::get_argument_count): Likewise.
Diffstat (limited to 'gdb/break-catch-throw.c')
-rw-r--r--gdb/break-catch-throw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/break-catch-throw.c b/gdb/break-catch-throw.c
index 2d91285..e9523a6 100644
--- a/gdb/break-catch-throw.c
+++ b/gdb/break-catch-throw.c
@@ -115,7 +115,7 @@ fetch_probe_arguments (struct value **arg0, struct value **arg1)
&& pc_probe.prob->get_name () != "rethrow"))
error (_("not stopped at a C++ exception catchpoint"));
- n_args = pc_probe.prob->get_argument_count (frame);
+ n_args = pc_probe.prob->get_argument_count (get_frame_arch (frame));
if (n_args < 2)
error (_("C++ exception catchpoint has too few arguments"));