gdbserver/linux-ia64-low: fix a build-breaking typo
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Sat, 16 May 2020 08:24:24 +0000 (10:24 +0200)
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Sat, 16 May 2020 08:45:40 +0000 (10:45 +0200)
During the gdbserver c++'ification refactoring, I apparently made a
typo that broke build in ia64 targets.

gdbserver/ChangeLog:
2020-05-16  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>

* linux-ia64-low.cc (ia64_target::sw_breakpoint_from_kind):
Fix incorrect 'gdb_assert_no_reached' to 'gdb_assert_not_reached'.
(ia64_target::low_breakpoint_at): Ditto.

gdbserver/ChangeLog
gdbserver/linux-ia64-low.cc

index d2b2444d09be94818683e5e01d33131da03025e8..3a27705f8df2ec875d2f32c21de7b460acfe72c0 100644 (file)
@@ -1,3 +1,9 @@
+2020-05-16  Tankut Baris Aktemur  <tankut.baris.aktemur@intel.com>
+
+       * linux-ia64-low.cc (ia64_target::sw_breakpoint_from_kind):
+       Fix incorrect 'gdb_assert_no_reached' to 'gdb_assert_not_reached'.
+       (ia64_target::low_breakpoint_at): Ditto.
+
 2020-05-15  Hannes Domani  <ssbssa@yahoo.de>
 
        * win32-i386-low.cc (i386_supports_z_point_type): Handle
index 83a180871dcaf00c16a1c88b28969ce485bf0be3..ee255418b0f88f4610476a9240b91fc7d08d1297 100644 (file)
@@ -53,15 +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_no_reached ("linux target op low_breakpoint_at is not "
-                        "implemented by this target");
+  gdb_assert_not_reached ("linux target op low_breakpoint_at is not "
+                         "implemented by this target");
 }
 
 /* Defined in auto-generated file reg-ia64.c.  */
This page took 0.033768 seconds and 4 git commands to generate.