From patchwork Thu Sep 14 15:18:29 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: John Baldwin X-Patchwork-Id: 22882 Received: (qmail 95540 invoked by alias); 14 Sep 2017 15:18:53 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 95325 invoked by uid 89); 14 Sep 2017 15:18:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-24.3 required=5.0 tests=AWL, BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, SPF_HELO_PASS, SPF_SOFTFAIL autolearn=ham version=3.3.2 spammy= X-Spam-User: qpsmtpd, 2 recipients X-HELO: mail.baldwin.cx Received: from bigwig.baldwin.cx (HELO mail.baldwin.cx) (96.47.65.170) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 14 Sep 2017 15:18:51 +0000 Received: from ralph.baldwin.cx.net (c-73-231-226-104.hsd1.ca.comcast.net [73.231.226.104]) by mail.baldwin.cx (Postfix) with ESMTPSA id 56CC610A82E; Thu, 14 Sep 2017 11:18:49 -0400 (EDT) From: John Baldwin To: gdb-patches@sourceware.org, binutils@sourceware.org Subject: [PATCH 2/4] Handle the NT_ARM_VFP core dump note on FreeBSD. Date: Thu, 14 Sep 2017 08:18:29 -0700 Message-Id: <20170914151831.65362-3-jhb@FreeBSD.org> In-Reply-To: <20170914151831.65362-1-jhb@FreeBSD.org> References: <20170914151831.65362-1-jhb@FreeBSD.org> X-IsSubscribed: yes 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 + + * elf.c (elfcore_grok_freebsd_note): Handle NT_ARM_VFP. + 2017-09-14 Nick Clifton 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; }