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 50f539c commit 4f1a538Copy full SHA for 4f1a538
clang/lib/Headers/intrin.h
@@ -30,6 +30,10 @@
30
#include <arm64intr.h>
31
#endif
32
33
+#if defined(__ARM_ACLE)
34
+#include <arm_acle.h>
35
+#endif
36
+
37
/* For the definition of jmp_buf. */
38
#if __STDC_HOSTED__
39
#include <setjmp.h>
clang/test/Headers/arm-acle-no-direct-include.c
@@ -0,0 +1,8 @@
1
+// RUN: %clang_cl --target=aarch64-windows-msvc -Xclang -verify /E -U__STDC_HOSTED__ -Wno-builtin-macro-redefined %s 2>&1 | FileCheck %s
2
3
+// expected-no-diagnostics
4
5
+// CHECK: void __yield(void);
6
+#include <intrin.h>
7
+void f() { __yield(); }
8
0 commit comments