diff options
Diffstat (limited to 'gdbserver/linux-ia64-low.cc')
-rw-r--r-- | gdbserver/linux-ia64-low.cc | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdbserver/linux-ia64-low.cc b/gdbserver/linux-ia64-low.cc index 493c7e4..64b39be 100644 --- a/gdbserver/linux-ia64-low.cc +++ b/gdbserver/linux-ia64-low.cc @@ -42,6 +42,8 @@ protected: bool low_cannot_store_register (int regno) override; bool low_fetch_register (regcache *regcache, int regno) override; + + bool low_breakpoint_at (CORE_ADDR pc) override; }; /* The singleton target ops object. */ @@ -55,6 +57,13 @@ ia64_target::sw_breakpoint_from_kind (int kind, int *size) "implemented by this target"); } +bool +ia64_target::low_breakpoint_at (CORE_ADDR pc) +{ + gdb_assert_no_reached ("linux target op low_breakpoint_at is not " + "implemented by this target"); +} + /* Defined in auto-generated file reg-ia64.c. */ void init_registers_ia64 (void); extern const struct target_desc *tdesc_ia64; |