From: Joseph Myers Date: Tue, 28 Feb 2023 15:57:40 +0000 (+0000) Subject: Add AArch64 HWCAP2 values from Linux 6.2 to bits/hwcap.h X-Git-Tag: glibc-2.38~515 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=59a6d5e9477695c41d6feef7ef8636f8f744f3c5;p=thirdparty%2Fglibc.git Add AArch64 HWCAP2 values from Linux 6.2 to bits/hwcap.h Linux 6.2 adds three new AArch64 HWCAP2 values; add them to glibc's AArch64 bits/hwcap.h. Tested with build-many-glibcs.py for aarch64-linux-gnu. --- diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index bc1b3eaba44..69b2b431402 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -89,3 +89,6 @@ #define HWCAP2_WFXT (1UL << 31) #define HWCAP2_EBF16 (1UL << 32) #define HWCAP2_SVE_EBF16 (1UL << 33) +#define HWCAP2_CSSC (1UL << 34) +#define HWCAP2_RPRFM (1UL << 35) +#define HWCAP2_SVE2P1 (1UL << 36)