about summary refs log tree commit diff
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
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.
-rw-r--r--ChangeLog5
-rw-r--r--sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h3
2 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4e3d106fef..2f7c086df2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
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)