This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] S390: Fix typo "s930" -> "s390"


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

commit 34a60ddbad3b76d8f327250527cf4915839943d7
Author: Andreas Arnez <arnez@linux.vnet.ibm.com>
Date:   Tue Jun 21 13:26:11 2016 +0200

    S390: Fix typo "s930" -> "s390"
    
    This fixes a typo in the name of the "last-break" regset.
    
    gdb/ChangeLog:
    
    	* s390-linux-tdep.c (s390_iterate_over_regset_sections): Fix typo
    	in name of last-break regset.

Diff:
---
 gdb/ChangeLog         | 5 +++++
 gdb/s390-linux-tdep.c | 2 +-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index af8f925..b4331ea 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,3 +1,8 @@
+2016-06-21  Andreas Arnez  <arnez@linux.vnet.ibm.com>
+
+	* s390-linux-tdep.c (s390_iterate_over_regset_sections): Fix typo
+	in name of last-break regset.
+
 2016-06-21  Pedro Alves  <palves@redhat.com>
 
 	* fork-child.c (fork_inferior): Switch the child to the main UI
diff --git a/gdb/s390-linux-tdep.c b/gdb/s390-linux-tdep.c
index 2106333..70364b4 100644
--- a/gdb/s390-linux-tdep.c
+++ b/gdb/s390-linux-tdep.c
@@ -928,7 +928,7 @@ s390_iterate_over_regset_sections (struct gdbarch *gdbarch,
     cb (".reg-s390-last-break", 8,
 	(gdbarch_ptr_bit (gdbarch) == 32
 	 ? &s390_last_break_regset : &s390x_last_break_regset),
-	"s930 last-break address", cb_data);
+	"s390 last-break address", cb_data);
 
   if (tdep->have_linux_v2)
     cb (".reg-s390-system-call", 4, &s390_system_call_regset,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]