From 1e70e1924861bbd4ee18e4ac373f1b0da9f7deaf Mon Sep 17 00:00:00 2001 From: Katayama Hirofumi MZ Date: Sun, 30 Mar 2025 05:55:34 +0900 Subject: [PATCH] Update sdk/lib/crt/setjmp/amd64/setjmp.s Co-authored-by: Serge Gautherie <32623169+SergeGautherie@users.noreply.github.com> --- sdk/lib/crt/setjmp/amd64/setjmp.s | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/lib/crt/setjmp/amd64/setjmp.s b/sdk/lib/crt/setjmp/amd64/setjmp.s index 2bc159ebf48..17791044a0b 100644 --- a/sdk/lib/crt/setjmp/amd64/setjmp.s +++ b/sdk/lib/crt/setjmp/amd64/setjmp.s @@ -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