Browse Source

Remove now unneeded #ifdef check for NT_NETBSD_PAX.

NT_NETBSD_PAX was defined in commit be3b926d8d.

binutils/ChangeLog:

	* readelf.c (process_netbsd_elf_note): Remove now unneeded #ifdef
	check for NT_NETBSD_PAX.
binutils-2_37-branch
Frederic Cambus 5 years ago
committed by Alan Modra
parent
commit
0fa29e2dee
  1. 5
      binutils/ChangeLog
  2. 2
      binutils/readelf.c

5
binutils/ChangeLog

@ -1,3 +1,8 @@
2021-04-13 Frederic Cambus <fred@statdns.com>
* readelf.c (process_netbsd_elf_note): Remove now unneeded #ifdef
check for NT_NETBSD_PAX.
2021-04-12 Alan Modra <amodra@gmail.com>
* configure.ac (--enable-checking): Add support.

2
binutils/readelf.c

@ -19522,7 +19522,6 @@ process_netbsd_elf_note (Elf_Internal_Note * pnote)
pnote->descdata);
return true;
#ifdef NT_NETBSD_PAX
case NT_NETBSD_PAX:
if (pnote->descsz < 1)
break;
@ -19535,7 +19534,6 @@ process_netbsd_elf_note (Elf_Internal_Note * pnote)
((version & NT_NETBSD_PAX_ASLR) ? "+ASLR" : ""),
((version & NT_NETBSD_PAX_NOASLR) ? "-ASLR" : ""));
return true;
#endif
}
printf (" NetBSD\t0x%08lx\tUnknown note type: (0x%08lx)\n",

Loading…
Cancel
Save