From: Szabolcs Nagy Date: Tue, 4 Jul 2017 10:54:51 +0000 (+0100) Subject: Add HWCAP_ macros from Linux 4.12 to AArch64 bits/hwcap.h. X-Git-Tag: glibc-2.26~80 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=512d245bc30cca893db6979f42f058e734f345c3;p=thirdparty%2Fglibc.git 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. --- diff --git a/ChangeLog b/ChangeLog index 4e3d106fefa..2f7c086df23 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2017-07-17 Szabolcs Nagy + + * sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h (HWCAP_FCMA): New macro. + (HWCAP_JSCVT, HWCAP_LRCPC): Likewise. + 2017-07-16 John David Anglin * sysdeps/hppa/dl-trampoline.S (_dl_runtime_resolve): Return to caller diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index 117852da1c1..1de782089c6 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -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)