Update sdk/lib/crt/setjmp/amd64/setjmp.s

This commit is contained in:
Katayama Hirofumi MZ 2025-03-30 09:57:03 +09:00 committed by GitHub
parent 29921f29eb
commit 4b04b72bcb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -163,7 +163,7 @@ FUNC longjmp
mov rax, rdx /* Move val into rax (return value) */
test rax, rax /* Check if val is 0 */
jnz LJJMP /* If val is non-zero, jump to LJJMP */
inc eax /* Increment rax */
inc rax /* Increment rax */
LJJMP:
jmp qword ptr [rcx + JUMP_BUFFER_Rip] /* Jump to the stored return address (rip) */
ENDFUNC