aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2009-12-18 16:21:51 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2009-12-18 16:21:51 +0000
commit0675e188654a7092145ac3b5933ecb6d0cf5c6a3 (patch)
treea2744bd0a329565897b5e2bcd97aaa6081667859 /binutils
parent06ca79620f5d03763c1d9109a12da077939fb3e8 (diff)
downloadgdb-0675e188654a7092145ac3b5933ecb6d0cf5c6a3.zip
gdb-0675e188654a7092145ac3b5933ecb6d0cf5c6a3.tar.gz
gdb-0675e188654a7092145ac3b5933ecb6d0cf5c6a3.tar.bz2
include/elf/
* common.h (NT_S390_HIGH_GPRS): Define. bfd/ * elf.c (elfcore_grok_s390_high_gprs): New function. (elfcore_grok_note): Handle NT_S390_HIGH_GPRS notes. (elfcore_write_s390_high_gprs): New function. (elfcore_write_register_note): Call it. binutils/ * readelf.c (get_note_type): Handle NT_S390_HIGH_GPRS notes.
Diffstat (limited to 'binutils')
-rw-r--r--binutils/ChangeLog4
-rw-r--r--binutils/readelf.c2
2 files changed, 6 insertions, 0 deletions
diff --git a/binutils/ChangeLog b/binutils/ChangeLog
index 9ed4376..4098d9e 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2009-12-18 Ulrich Weigand <uweigand@de.ibm.com>
+
+ * readelf.c (get_note_type): Handle NT_S390_HIGH_GPRS notes.
+
2009-12-11 Nick Clifton <nickc@redhat.com>
* Makefile.in: Regenerate.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 689cd8a..956144d 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -10385,6 +10385,8 @@ get_note_type (unsigned e_type)
return _("NT_PPC_VMX (ppc Altivec registers)");
case NT_PPC_VSX:
return _("NT_PPC_VSX (ppc VSX registers)");
+ case NT_S390_HIGH_GPRS:
+ return _("NT_S390_HIGH_GPRS (s390 upper register halves)");
case NT_PSTATUS:
return _("NT_PSTATUS (pstatus structure)");
case NT_FPREGS: