Skip to content

Commit b578ed9

Browse files
nikomatsakisbrson
authored andcommitted
add required symbols
1 parent 0982c7f commit b578ed9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/rt/arch/x86_64/ccall.S

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,18 @@
66
// slower.
77
#if defined(__APPLE__) || defined(_WIN32)
88
.globl _upcall_call_c_stack
9+
.globl _upcall_call_c_stack_i64
10+
.globl _upcall_call_c_stack_float
911
_upcall_call_c_stack:
12+
_upcall_call_c_stack_i64:
13+
_upcall_call_c_stack_float:
1014
#else
1115
.globl upcall_call_c_stack
16+
.globl upcall_call_c_stack_i64
17+
.globl upcall_call_c_stack_float
1218
upcall_call_c_stack:
19+
upcall_call_c_stack_i64:
20+
upcall_call_c_stack_float:
1321
#endif
1422
push %rbp
1523
mov %rsp,%rbp // save rsp

0 commit comments

Comments
 (0)