about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/aarch64
diff options
context:
space:
mode:
authorSzabolcs Nagy <szabolcs.nagy@arm.com>2017-07-04 11:54:51 +0100
committerSzabolcs Nagy <szabolcs.nagy@arm.com>2017-07-17 09:24:08 +0100
commit512d245bc30cca893db6979f42f058e734f345c3 (patch)
tree0c0ab33fa78df99725eae9fb398e48fccaeb1ab9 /sysdeps/unix/sysv/linux/aarch64
parent1903b38c6599129d9c09d5cffc9ca7cbeb50b100 (diff)
downloadglibc-512d245bc30cca893db6979f42f058e734f345c3.tar.gz
glibc-512d245bc30cca893db6979f42f058e734f345c3.tar.xz
glibc-512d245bc30cca893db6979f42f058e734f345c3.zip
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/sysv/linux/aarch64')
-rw-r--r--sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h3
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 117852da1c..1de782089c 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)