Skip to content

Commit

Permalink
fix asm function name
Browse files Browse the repository at this point in the history
  • Loading branch information
xdBronch committed Sep 10, 2024
1 parent 7de3ef2 commit f480e58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/asm/coro_aarch64.s
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# See arm64 procedure call standard
# https://github.com/ARM-software/abi-aa/releases
.global _libcoro_stack_swap
_libcoro_stack_swap:
.global libcoro_stack_swap
libcoro_stack_swap:

# Store caller registers on the current stack
# Each register requires 8 bytes, there are 20 registers to save
Expand Down
2 changes: 0 additions & 2 deletions src/asm/coro_x86_64.s
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# See System V x86-64 calling convention
# https://gitlab.com/x86-psABIs/x86-64-ABI
.global _libcoro_stack_swap
_libcoro_stack_swap:
.global libcoro_stack_swap
libcoro_stack_swap:
# Store caller registers on the current stack
Expand Down

0 comments on commit f480e58

Please sign in to comment.