diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2011-06-15 16:36:58 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2011-06-15 16:36:58 +0000 |
commit | faa9a424ea76bdfd223e89b87f479297564a4e05 (patch) | |
tree | 01029aea3edab4e32a9daec5c2ff1fe41aa64aad /include/elf | |
parent | 48f4b4f592b16d767bb94b0ce40712f6a04f9f95 (diff) | |
download | binutils-gdb-faa9a424ea76bdfd223e89b87f479297564a4e05.tar.gz |
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 'include/elf')
-rw-r--r-- | include/elf/ChangeLog | 4 | ||||
-rw-r--r-- | include/elf/common.h | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/elf/ChangeLog b/include/elf/ChangeLog index 0147d5a2761..76fa7e5e1f4 100644 --- a/include/elf/ChangeLog +++ b/include/elf/ChangeLog @@ -1,3 +1,7 @@ +2011-06-15 Ulrich Weigand <ulrich.weigand@linaro.org> + + * common.h (NT_ARM_VFP): Define. + 2011-06-13 Walter Lee <walt@tilera.com> * common.h: Add EM_TILEGX. diff --git a/include/elf/common.h b/include/elf/common.h index 7f545317de1..70088a09bc1 100644 --- a/include/elf/common.h +++ b/include/elf/common.h @@ -539,6 +539,8 @@ /* note name must be "LINUX". */ #define NT_S390_PREFIX 0x305 /* S390 prefix register */ /* note name must be "LINUX". */ +#define NT_ARM_VFP 0x400 /* ARM VFP registers */ + /* note name must be "LINUX". */ /* Note segments for core files on dir-style procfs systems. */ |