darling-libobjc2/objc_msgSend.S
theraven 518e059538 Add MIPS support for assembly paths.
Note: Only n64 is tested.  o32 and n32 will probably work, but use at your own tisk...
2013-04-14 13:23:16 +00:00

13 lines
329 B
ArmAsm

#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
.section .note.GNU-stack,"",%progbits