mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Prefix export symbol prefix to coroutine_transfer
This commit is contained in:
parent
04c704c5c9
commit
41168f69fb
3 changed files with 17 additions and 8 deletions
|
@ -5,11 +5,14 @@
|
|||
## Copyright, 2018, by Samuel Williams.
|
||||
##
|
||||
|
||||
#define TOKEN_PASTE(x,y) x##y
|
||||
#define PREFIXED_SYMBOL(prefix,name) TOKEN_PASTE(prefix,name)
|
||||
|
||||
.text
|
||||
.align 2
|
||||
|
||||
.global coroutine_transfer
|
||||
coroutine_transfer:
|
||||
.global PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer)
|
||||
PREFIXED_SYMBOL(SYMBOL_PREFIX,coroutine_transfer):
|
||||
|
||||
# Make space on the stack for caller registers
|
||||
sub sp, sp, 0xb0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue