public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdbserver/linux-ia64-low: fix a build-breaking typo
@ 2020-05-16  8:45 Tankut Baris Aktemur
  0 siblings, 0 replies; only message in thread
From: Tankut Baris Aktemur @ 2020-05-16  8:45 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=8bbf03947dd594262e672c1fbc3462a81c811b6f

commit 8bbf03947dd594262e672c1fbc3462a81c811b6f
Author: Tankut Baris Aktemur <tankut.baris.aktemur@intel.com>
Date:   Sat May 16 10:24:24 2020 +0200

    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.

Diff:
---
 gdbserver/ChangeLog         | 6 ++++++
 gdbserver/linux-ia64-low.cc | 8 ++++----
 2 files changed, 10 insertions(+), 4 deletions(-)

diff --git a/gdbserver/ChangeLog b/gdbserver/ChangeLog
index d2b2444d09b..3a27705f8df 100644
--- a/gdbserver/ChangeLog
+++ b/gdbserver/ChangeLog
@@ -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
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.  */


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-05-16  8:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-16  8:45 [binutils-gdb] gdbserver/linux-ia64-low: fix a build-breaking typo Tankut Baris Aktemur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).