Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/monotouch-support.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void xamarin_start_wwan (const char *uri);
const char * xamarin_GetFolderPath (int folder);
#endif

#if defined (TARGET_OS_TV) && defined (__arm64__)
#if defined (__arm64__)
void objc_msgSend_stret (id self, SEL op, ...);
void objc_msgSendSuper_stret (struct objc_super *super, SEL op, ...);
#endif
Expand Down
2 changes: 1 addition & 1 deletion runtime/xamarin-support.m
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
}
#endif /* defined (MONOTOUCH) */

#if TARGET_OS_TV && defined (__arm64__)
#if defined (__arm64__)

// there are no objc_msgSend[Super]_stret functions on ARM64 but the managed
// code might have (e.g. linker is off) references to the symbol, which makes
Expand Down