Add HWCAP_ macros from Linux 4.12 to AArch64 bits/hwcap.h.

This patch adds the HWCAP_JSCVT, HWCAP_FCMA and HWCAP_LRCPC macros
from Linux 4.12 to the AArch64 bits/hwcap.h.

	* sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_FCMA): New macro.
	(HWCAP_JSCVT, HWCAP_LRCPC): Likewise.
This commit is contained in:
Szabolcs Nagy 2017-07-04 11:54:51 +01:00
parent 1903b38c65
commit 512d245bc3
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2017-07-17 Szabolcs Nagy <szabolcs.nagy@arm.com>
* sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_FCMA): New macro.
(HWCAP_JSCVT, HWCAP_LRCPC): Likewise.
2017-07-16 John David Anglin <danglin@gcc.gnu.org>
* sysdeps/hppa/dl-trampoline.S (_dl_runtime_resolve): Return to caller

View File

@ -34,3 +34,6 @@
#define HWCAP_ASIMDHP (1 << 10)
#define HWCAP_CPUID (1 << 11)
#define HWCAP_ASIMDRDM (1 << 12)
#define HWCAP_JSCVT (1 << 13)
#define HWCAP_FCMA (1 << 14)
#define HWCAP_LRCPC (1 << 15)