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 8009f45 commit a46abb0Copy full SHA for a46abb0
stdlib/public/SwiftShims/swift/shims/EmbeddedShims.h
@@ -35,7 +35,7 @@ static inline void _swift_embedded_invoke_heap_object_destroy(void *object) {
35
void *metadata = *(void **)object;
36
void **destroy_location = &((void **)metadata)[1];
37
#if __has_feature(ptrauth_calls)
38
- (*(__ptrauth(0,1,0xbbbf) HeapObjectDestroyer *)destroy_location)(object);
+ (*(HeapObjectDestroyer __ptrauth(0,1,0xbbbf) *)destroy_location)(object);
39
#else
40
(*(HeapObjectDestroyer *)destroy_location)(object);
41
#endif
0 commit comments