aboutsummaryrefslogtreecommitdiff
path: root/binutils
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2011-06-15 16:36:58 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2011-06-15 16:36:58 +0000
commitfaa9a424ea76bdfd223e89b87f479297564a4e05 (patch)
tree01029aea3edab4e32a9daec5c2ff1fe41aa64aad /binutils
parent48f4b4f592b16d767bb94b0ce40712f6a04f9f95 (diff)
downloadfsf-binutils-gdb-faa9a424ea76bdfd223e89b87f479297564a4e05.zip
fsf-binutils-gdb-faa9a424ea76bdfd223e89b87f479297564a4e05.tar.gz
fsf-binutils-gdb-faa9a424ea76bdfd223e89b87f479297564a4e05.tar.bz2
include/elf/
* common.h (NT_ARM_VFP): Define. bfd/ * elf-bfd.h (elfcore_write_arm_vfp): Add prototype. * elf.c (elfcore_grok_arm_vfp): New function. (elfcore_grok_note): Call it to handle NT_ARM_VFP notes. (elfcore_write_arm_vfp): New function. (elfcore_write_register_note): Call it to handle .reg-arm-vfp. binutils/ * readelf.c (get_note_type): Handle NT_ARM_VFP.
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 320bd7f..82d6b52 100644
--- a/binutils/ChangeLog
+++ b/binutils/ChangeLog
@@ -1,3 +1,7 @@
+2011-06-15 Ulrich Weigand <ulrich.weigand@linaro.org>
+
+ * readelf.c (get_note_type): Handle NT_ARM_VFP.
+
2011-06-13 Walter Lee <walt@tilera.com>
* readelf.c: Include tilepro.h and tilegx.h.
diff --git a/binutils/readelf.c b/binutils/readelf.c
index 2724a9a..5a6521c 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -12284,6 +12284,8 @@ get_note_type (unsigned e_type)
return _("NT_S390_CTRS (s390 control registers)");
case NT_S390_PREFIX:
return _("NT_S390_PREFIX (s390 prefix register)");
+ case NT_ARM_VFP:
+ return _("NT_ARM_VFP (arm VFP registers)");
case NT_PSTATUS:
return _("NT_PSTATUS (pstatus structure)");
case NT_FPREGS: