diff options
author | Kamil Rytarowski <n54@gmx.com> | 2020-03-13 14:16:35 +0100 |
---|---|---|
committer | Kamil Rytarowski <n54@gmx.com> | 2020-03-13 14:16:35 +0100 |
commit | 015ec493d8603095d212df443e7b75017b572455 (patch) | |
tree | 5c94a805458a12e87d0cac2dc4484408b96f05a2 /bfd/elf.c | |
parent | 1673df3278637a911b55983a92e4d1f61816e57c (diff) | |
download | fsf-binutils-gdb-015ec493d8603095d212df443e7b75017b572455.zip fsf-binutils-gdb-015ec493d8603095d212df443e7b75017b572455.tar.gz fsf-binutils-gdb-015ec493d8603095d212df443e7b75017b572455.tar.bz2 |
Recognize aarch64 PT_GETREGS and PT_GETFPREGS notes on NetBSD
* elf.c (elfcore_grok_netbsd_note): Add support for aarch64.
Diffstat (limited to 'bfd/elf.c')
-rw-r--r-- | bfd/elf.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -10768,6 +10768,7 @@ elfcore_grok_netbsd_note (bfd *abfd, Elf_Internal_Note *note) /* On the Alpha, SPARC (32-bit and 64-bit), PT_GETREGS == mach+0 and PT_GETFPREGS == mach+2. */ + case bfd_arch_aarch64: case bfd_arch_alpha: case bfd_arch_sparc: switch (note->type) |