diff options
author | Pedro Alves <palves@redhat.com> | 2015-03-04 20:41:17 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2015-03-04 20:41:17 +0000 |
commit | 527a273ac1b6221cb37f601d211093233afc7aaf (patch) | |
tree | 7d925cfa2fcfe088c6eb038653a5714d4d304526 /gdb/linux-nat.c | |
parent | 3e572f71047489eb4f311b0fa15293a7ce83f871 (diff) | |
download | gdb-527a273ac1b6221cb37f601d211093233afc7aaf.zip gdb-527a273ac1b6221cb37f601d211093233afc7aaf.tar.gz gdb-527a273ac1b6221cb37f601d211093233afc7aaf.tar.bz2 |
garbage collect target_decr_pc_after_break
record-btrace was the only target making use of this, and it no longer
uses it.
gdb/ChangeLog:
2015-03-04 Pedro Alves <palves@redhat.com>
* target.h (struct target_ops) <to_decr_pc_after_break>: Delete.
(target_decr_pc_after_break): Delete declaration.
* target.c (default_target_decr_pc_after_break)
(target_decr_pc_after_break): Delete.
* linux-nat.c (check_stopped_by_breakpoint, linux_nat_wait_1): Use
gdbarch_decr_pc_after_break instead of target_decr_pc_after_break.
* linux-thread-db.c (check_event): Likewise.
* infrun.c (adjust_pc_after_break): Likewise.
* darwin-nat.c (cancel_breakpoint): Likewise.
* aix-thread.c (aix_thread_wait): Likewise.
* target-delegates.c: Regenerate.
Diffstat (limited to 'gdb/linux-nat.c')
-rw-r--r-- | gdb/linux-nat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/linux-nat.c b/gdb/linux-nat.c index af77df2..4a5a066 100644 --- a/gdb/linux-nat.c +++ b/gdb/linux-nat.c @@ -2685,7 +2685,7 @@ check_stopped_by_breakpoint (struct lwp_info *lp) #endif pc = regcache_read_pc (regcache); - sw_bp_pc = pc - target_decr_pc_after_break (gdbarch); + sw_bp_pc = pc - gdbarch_decr_pc_after_break (gdbarch); #if USE_SIGTRAP_SIGINFO if (linux_nat_get_siginfo (lp->ptid, &siginfo)) @@ -3460,7 +3460,7 @@ linux_nat_wait_1 (struct target_ops *ops, { struct regcache *regcache = get_thread_regcache (lp->ptid); struct gdbarch *gdbarch = get_regcache_arch (regcache); - int decr_pc = target_decr_pc_after_break (gdbarch); + int decr_pc = gdbarch_decr_pc_after_break (gdbarch); if (decr_pc != 0) { |