aboutsummaryrefslogtreecommitdiff
path: root/bfd/elf.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2017-10-05 09:50:01 -0700
committerJohn Baldwin <jhb@FreeBSD.org>2017-10-05 09:50:01 -0700
commit6d5be5d6b8b4412e65bc037472aa2e727c25ccf5 (patch)
treea5b9a2045a1efe578fbca0c64dec4a53a3c6c954 /bfd/elf.c
parent12c4bd7f53e9cefcf7c3a7f8cbf9e552526cb963 (diff)
downloadbinutils-6d5be5d6b8b4412e65bc037472aa2e727c25ccf5.zip
binutils-6d5be5d6b8b4412e65bc037472aa2e727c25ccf5.tar.gz
binutils-6d5be5d6b8b4412e65bc037472aa2e727c25ccf5.tar.bz2
Handle the NT_ARM_VFP core dump note on FreeBSD.
bfd/ChangeLog: * elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r--bfd/elf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/bfd/elf.c b/bfd/elf.c
index fd7f773..02decea 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -10022,6 +10022,9 @@ elfcore_grok_freebsd_note (bfd *abfd, Elf_Internal_Note *note)
return elfcore_make_note_pseudosection (abfd, ".note.freebsdcore.lwpinfo",
note);
+ case NT_ARM_VFP:
+ return elfcore_grok_arm_vfp (abfd, note);
+
default:
return TRUE;
}