Don't write to inferior_ptid in tracefile-tfile.c
[binutils-gdb.git] / gdbserver / linux-ia64-low.cc
index 493c7e4f93d6fd20da2016bfa0fb84f1ae4b14b4..ee255418b0f88f4610476a9240b91fc7d08d1297 100644 (file)
@@ -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.  */
@@ -51,8 +53,15 @@ static ia64_target the_ia64_target;
 const gdb_byte *
 ia64_target::sw_breakpoint_from_kind (int kind, int *size)
 {
-  gdb_assert_no_reached ("target op sw_breakpoint_from_kind is not "
-                        "implemented by this target");
+  gdb_assert_not_reached ("target op sw_breakpoint_from_kind is not "
+                         "implemented by this target");
+}
+
+bool
+ia64_target::low_breakpoint_at (CORE_ADDR pc)
+{
+  gdb_assert_not_reached ("linux target op low_breakpoint_at is not "
+                         "implemented by this target");
 }
 
 /* Defined in auto-generated file reg-ia64.c.  */
@@ -376,10 +385,6 @@ ia64_target::low_arch_setup ()
   current_process ()->tdesc = tdesc_ia64;
 }
 
-
-struct linux_target_ops the_low_target = {
-};
-
 /* The linux target ops object.  */
 
 linux_process_target *the_linux_target = &the_ia64_target;