We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61571e9 commit 0c02811Copy full SHA for 0c02811
compiler-rt/lib/builtins/cpu_model/aarch64/fmv/apple.inc
@@ -5,6 +5,21 @@
5
#if __has_include(<arm/cpu_capabilities_public.h>)
6
#include <arm/cpu_capabilities_public.h>
7
#define HAS_CPU_CAPABILITIES_PUBLIC_H 1
8
+
9
+// FB13964283 - A few of these didn't make it into the public SDK yet.
10
+#ifndef CAP_BIT_FEAT_SME
11
+#define CAP_BIT_FEAT_SME 40
12
+#endif
13
+#ifndef CAP_BIT_FEAT_SME2
14
+#define CAP_BIT_FEAT_SME2 41
15
16
+#ifndef CAP_BIT_FEAT_SME_F64F64
17
+#define CAP_BIT_FEAT_SME_F64F64 42
18
19
+#ifndef CAP_BIT_FEAT_SME_I16I64
20
+#define CAP_BIT_FEAT_SME_I16I64 43
21
22
23
#endif
24
25
static bool isKnownAndSupported(const char *name) {
0 commit comments