diff options
author | Joseph Myers <joseph@codesourcery.com> | 2023-01-10 15:51:58 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2023-01-10 15:51:58 +0000 |
commit | 57f4a850c84a0545dec9aea4242241d2b19fa6af (patch) | |
tree | b9413b78f7962e4074a19920a5fe17b1ee915611 /sysdeps/unix | |
parent | 3d3a2911ba65e613eac878d8eb02a0aba4ad7651 (diff) | |
download | glibc-57f4a850c84a0545dec9aea4242241d2b19fa6af.tar.gz glibc-57f4a850c84a0545dec9aea4242241d2b19fa6af.tar.xz glibc-57f4a850c84a0545dec9aea4242241d2b19fa6af.zip |
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.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h index d5231ad1bc..bc1b3eaba4 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) |