diff options
Diffstat (limited to 'gdbserver/linux-cris-low.cc')
-rw-r--r-- | gdbserver/linux-cris-low.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdbserver/linux-cris-low.cc b/gdbserver/linux-cris-low.cc index 5fb40bf..9f3ad23 100644 --- a/gdbserver/linux-cris-low.cc +++ b/gdbserver/linux-cris-low.cc @@ -43,6 +43,8 @@ protected: CORE_ADDR low_get_pc (regcache *regcache) override; void low_set_pc (regcache *regcache, CORE_ADDR newpc) override; + + bool low_breakpoint_at (CORE_ADDR pc) override; }; /* The singleton target ops object. */ @@ -118,19 +120,18 @@ cris_target::sw_breakpoint_from_kind (int kind, int *size) return (const gdb_byte *) &cris_breakpoint; } -static int -cris_breakpoint_at (CORE_ADDR where) +bool +cris_target::low_breakpoint_at (CORE_ADDR where) { unsigned short insn; - the_target->read_memory (where, (unsigned char *) &insn, - cris_breakpoint_len); + read_memory (where, (unsigned char *) &insn, cris_breakpoint_len); if (insn == cris_breakpoint) - return 1; + return true; /* If necessary, recognize more trap instructions here. GDB only uses the one. */ - return 0; + return false; } void @@ -158,7 +159,6 @@ cris_target::get_regs_info () } struct linux_target_ops the_low_target = { - cris_breakpoint_at, }; /* The linux target ops object. */ |