mirror of
https://github.com/darlinghq/darling-libobjc2.git
synced 2024-11-23 20:29:50 +00:00
16 lines
382 B
ArmAsm
16 lines
382 B
ArmAsm
#include "common.S"
|
|
#if __x86_64
|
|
#include "objc_msgSend.x86-64.S"
|
|
#elif __i386
|
|
#include "objc_msgSend.x86-32.S"
|
|
#elif __arm__
|
|
#include "objc_msgSend.arm.S"
|
|
#elif defined(__mips_n64) || defined(__mips_n32)
|
|
#include "objc_msgSend.mips.S"
|
|
#else
|
|
#warning objc_msgSend() not implemented for your architecture
|
|
#endif
|
|
#if HAS_SECTION_DIRECTIVE
|
|
.section .note.GNU-stack,"",%progbits
|
|
#endif
|