diff options
author | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2017-07-04 11:54:51 +0100 |
---|---|---|
committer | Szabolcs Nagy <szabolcs.nagy@arm.com> | 2017-07-17 09:24:08 +0100 |
commit | 512d245bc30cca893db6979f42f058e734f345c3 (patch) | |
tree | 0c0ab33fa78df99725eae9fb398e48fccaeb1ab9 /sysdeps/unix | |
parent | 1903b38c6599129d9c09d5cffc9ca7cbeb50b100 (diff) | |
download | glibc-512d245bc30cca893db6979f42f058e734f345c3.zip glibc-512d245bc30cca893db6979f42f058e734f345c3.tar.gz glibc-512d245bc30cca893db6979f42f058e734f345c3.tar.bz2 |
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.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index 117852d..1de7820 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) |