[clang] [compiler-rt] [llvm] [AArch64][SME] Add support for sme-fa64 (PR #70809)
Matthew Devereau via cfe-commits
cfe-commits at lists.llvm.org
Mon Nov 6 08:02:40 PST 2023
================
@@ -1133,6 +1133,9 @@ typedef struct __ifunc_arg_t {
#ifndef HWCAP2_SME_F64F64
#define HWCAP2_SME_F64F64 (1 << 25)
#endif
+#ifndef HWCAP2_SME_FA64
+#define HWCAP2_SME_FA64 (1 << 26)
----------------
MDevereau wrote:
This comes from here https://github.com/torvalds/linux/blob/master/arch/arm64/include/uapi/asm/hwcap.h so it is in fact 30.
https://github.com/llvm/llvm-project/pull/70809
More information about the cfe-commits
mailing list