]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Add HWCAP_ macros from Linux 4.12 to AArch64 bits/hwcap.h.
authorSzabolcs Nagy <szabolcs.nagy@arm.com>
Tue, 4 Jul 2017 10:54:51 +0000 (11:54 +0100)
committerSzabolcs Nagy <szabolcs.nagy@arm.com>
Mon, 17 Jul 2017 08:24:08 +0000 (09:24 +0100)
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.

ChangeLog
sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h

index 4e3d106fefad338d9be48fdf2e1b2244b9a965ea..2f7c086df23a8b22895cd997f96c82efeea7833d 100644 (file)
--- 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
index 117852da1c18fb34c9afb50e514acd7fa04a9d1a..1de782089c6ec550e844701185e18a6209e7419c 100644 (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)