1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

coroutine: Darwin on ARM64 needs alignment of 2^2

This commit is contained in:
David CARLIER 2021-03-31 21:28:58 +01:00 committed by Samuel Williams
parent e675a7899c
commit 68a8f611e0

View file

@ -11,10 +11,12 @@
#if defined(__APPLE__)
#define x29 fp
#define x30 lr
#endif
.text
.p2align 2
#else
.text
.align 2
#endif
.global PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer)
PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer):