diff options
author | Joseph Myers <joseph@codesourcery.com> | 2023-10-17 13:13:27 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2023-10-17 13:13:27 +0000 |
commit | ff5d2abd18629e0efac41e31699cdff3be0e08fa (patch) | |
tree | 9a6219c2d72f3607a5918ae5e64ea102dce83a5b /sysdeps | |
parent | 5ef608f36493c5d711418c5d31a7ebe710decc6e (diff) | |
download | glibc-ff5d2abd18629e0efac41e31699cdff3be0e08fa.tar glibc-ff5d2abd18629e0efac41e31699cdff3be0e08fa.tar.gz glibc-ff5d2abd18629e0efac41e31699cdff3be0e08fa.tar.bz2 glibc-ff5d2abd18629e0efac41e31699cdff3be0e08fa.zip |
Add HWCAP2_MOPS from Linux 6.5 to AArch64 bits/hwcap.h
Linux 6.5 adds a new AArch64 HWCAP2 value, HWCAP2_MOPS. Add it to
glibc's bits/hwcap.h.
Tested with build-many-glibcs.py for aarch64-linux-gnu.
Diffstat (limited to 'sysdeps')
-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 55c7ed39be..b251c2d417 100644 --- a/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h +++ b/sysdeps/unix/sysv/linux/aarch64/bits/hwcap.h @@ -98,3 +98,4 @@ #define HWCAP2_SME_BI32I32 (1UL << 40) #define HWCAP2_SME_B16B16 (1UL << 41) #define HWCAP2_SME_F16F16 (1UL << 42) +#define HWCAP2_MOPS (1UL << 43) |