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.
2 parents b5bc514 + 03956e0 commit 9a75847Copy full SHA for 9a75847
stdlib/public/Concurrency/Task.cpp
@@ -35,6 +35,10 @@
35
#include <dlfcn.h>
36
#endif
37
38
+#if defined(SWIFT_CONCURRENCY_BACK_DEPLOYMENT)
39
+asm("\n .globl _swift_async_extendedFramePointerFlags" \
40
+ "\n _swift_async_extendedFramePointerFlags = 0x0");
41
+#else
42
#ifdef __APPLE__
43
#if __POINTER_WIDTH__ == 64
44
asm("\n .globl _swift_async_extendedFramePointerFlags" \
@@ -47,6 +51,7 @@ asm("\n .globl _swift_async_extendedFramePointerFlags" \
47
51
"\n _swift_async_extendedFramePointerFlags = 0x0");
48
52
49
53
#endif // __APPLE__
54
+#endif // !defined(SWIFT_CONCURRENCY_BACK_DEPLOYMENT)
50
55
56
using namespace swift;
57
using FutureFragment = AsyncTask::FutureFragment;
0 commit comments