summaryrefslogtreecommitdiff
path: root/gdbserver/linux-ia64-low.cc
diff options
context:
space:
mode:
authorTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-05-16 10:24:24 +0200
committerTankut Baris Aktemur <tankut.baris.aktemur@intel.com>2020-05-16 10:45:40 +0200
commit8bbf03947dd594262e672c1fbc3462a81c811b6f (patch)
treeaac3c3c88dad2b08a2d9fd083e0c5e9e86d61a0a /gdbserver/linux-ia64-low.cc
parent8f86ae1a18417e575f510d1aa7b6df2524256464 (diff)
downloadbinutils-gdb-8bbf03947dd594262e672c1fbc3462a81c811b6f.tar.gz
gdbserver/linux-ia64-low: fix a build-breaking typo
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.
Diffstat (limited to 'gdbserver/linux-ia64-low.cc')
-rw-r--r--gdbserver/linux-ia64-low.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/gdbserver/linux-ia64-low.cc b/gdbserver/linux-ia64-low.cc
index 83a180871dc..ee255418b0f 100644
--- a/gdbserver/linux-ia64-low.cc
+++ b/gdbserver/linux-ia64-low.cc
@@ -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. */