diff options
author | johannst <johannes.stoelp@gmail.com> | 2020-10-08 20:14:42 +0200 |
---|---|---|
committer | johannst <johannes.stoelp@gmail.com> | 2020-10-08 20:14:42 +0200 |
commit | 3b4a6097dee760d22eecd97ebe041c69da6b056a (patch) | |
tree | bf1536956a327c77c0975d1a6a0d04e230fd0aad /lib/arch/x86_64/yield.s | |
parent | 8d2529404437262c5bf0521063221906aeecfb22 (diff) | |
download | matcha-threads-3b4a6097dee760d22eecd97ebe041c69da6b056a.tar.gz matcha-threads-3b4a6097dee760d22eecd97ebe041c69da6b056a.zip |
remove incorrect const
Diffstat (limited to 'lib/arch/x86_64/yield.s')
-rw-r--r-- | lib/arch/x86_64/yield.s | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/arch/x86_64/yield.s b/lib/arch/x86_64/yield.s index d40bcd7..2c5f1d6 100644 --- a/lib/arch/x86_64/yield.s +++ b/lib/arch/x86_64/yield.s @@ -3,9 +3,9 @@ .intel_syntax noprefix .section .text, "ax", @progbits - # extern "C" void yield(const void* new_stack, void* const* old_stack); - # ^^^^^^^^^ ^^^^^^^^^ - # rdi rsi + # extern "C" void yield(const void* new_stack, void** old_stack); + # ^^^^^^^^^ ^^^^^^^^^ + # rdi rsi .global yield .type yield, @function yield: |