This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH 2/4] Handle the NT_ARM_VFP core dump note on FreeBSD.
- From: John Baldwin <jhb at FreeBSD dot org>
- To: gdb-patches at sourceware dot org, binutils at sourceware dot org
- Date: Thu, 14 Sep 2017 08:18:29 -0700
- Subject: [PATCH 2/4] Handle the NT_ARM_VFP core dump note on FreeBSD.
- Authentication-results: sourceware.org; auth=none
- References: <20170914151831.65362-1-jhb@FreeBSD.org>
bfd/ChangeLog:
* elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.
---
bfd/ChangeLog | 4 ++++
bfd/elf.c | 3 +++
2 files changed, 7 insertions(+)
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index 3d807b9f6c..a2a1972793 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2017-09-14 John Baldwin <jhb@FreeBSD.org>
+
+ * elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.
+
2017-09-14 Nick Clifton <nickc@redhat.com>
PR binutils/22113
diff --git a/bfd/elf.c b/bfd/elf.c
index 2aa2337724..1fb735d9a7 100644
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -10011,6 +10011,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;
}
--
2.13.3