From: Joseph Myers Date: Tue, 10 Jan 2023 15:51:58 +0000 (+0000) Subject: Add HWCAP2_SVE_EBF16 from Linux 6.1 to AArch64 bits/hwcap.h X-Git-Tag: glibc-2.37~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=57f4a850c84a0545dec9aea4242241d2b19fa6af;p=thirdparty%2Fglibc.git Add HWCAP2_SVE_EBF16 from Linux 6.1 to AArch64 bits/hwcap.h Linux 6.1 adds a new AArch64 HWCAP2 value HWCAP2_SVE_EBF16; add it to the corresponding bits/hwcap.h. Tested with build-many-glibcs.py for aarch64. --- diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index d5231ad1bca..bc1b3eaba44 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -88,3 +88,4 @@ #define HWCAP2_SME_FA64 (1 << 30) #define HWCAP2_WFXT (1UL << 31) #define HWCAP2_EBF16 (1UL << 32) +#define HWCAP2_SVE_EBF16 (1UL << 33)