]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
Handle the NT_ARM_VFP core dump note on FreeBSD.
authorJohn Baldwin <jhb@FreeBSD.org>
Thu, 5 Oct 2017 16:50:01 +0000 (09:50 -0700)
committerJohn Baldwin <jhb@FreeBSD.org>
Thu, 5 Oct 2017 16:50:01 +0000 (09:50 -0700)
bfd/ChangeLog:

* elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.

bfd/ChangeLog
bfd/elf.c

index 84fad70830675a96077ed7a387ce3ce8a0594471..b4611e571c7368635f86f59c386ddda29384499c 100644 (file)
@@ -1,3 +1,7 @@
+2017-10-05  John Baldwin  <jhb@FreeBSD.org>
+
+       * elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP.
+
 2017-10-05  H.J. Lu  <hongjiu.lu@intel.com>
 
        * elf32-tilepro.c (readonly_dynrelocs): Dump dynamic relocation
index fd7f77373046940c0f9a944ddf110eb66d142086..02deceaf4c44a24999eb3a439315ad4c79b5ca33 100644 (file)
--- 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;
     }