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

Co-authored-by: Serge Gautherie <32623169+SergeGautherie@users.noreply.github.com>
This commit is contained in:
Katayama Hirofumi MZ 2025-03-30 05:55:34 +09:00
parent 62c7389cc6
commit 1e70e19248

View file

@ -169,7 +169,7 @@ FUNC longjmp
jz LABEL3 /* If val is 0, jump to LABEL3 */
jmp qword ptr [rcx + JUMP_BUFFER_Rip] /* Jump to the stored return address (rip) */
LABEL3:
mov rax, 1 /* If val was 0, return 1 */
mov rax, 1 /* If val was 0, return 1 on second (longjmp) return */
jmp qword ptr [rcx + JUMP_BUFFER_Rip] /* Jump to the stored return address (rip) */
ENDFUNC