diff options
Diffstat (limited to 'gdb/tracepoint.c')
-rw-r--r-- | gdb/tracepoint.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index a2a073d..ff5c6b7 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -1539,7 +1539,8 @@ encode_actions (struct tracepoint *t, char ***tdp_actions, *tdp_actions = NULL; *stepping_actions = NULL; - TARGET_VIRTUAL_FRAME_POINTER (t->address, &frame_reg, &frame_offset); + gdbarch_virtual_frame_pointer (current_gdbarch, + t->address, &frame_reg, &frame_offset); for (action = t->actions; action; action = action->next) { |