big fix 2

This commit is contained in:
Katayama Hirofumi MZ 2025-03-29 18:22:03 +09:00
parent 77a2ff72af
commit c134e11a47

View file

@ -51,6 +51,10 @@ FUNC _setjmp
.endprolog
#if 1
xor rdx, rdx
jmp _setjmpex
#else
push rbp /* Save rbp */
mov rbp, rsp /* rbp = rsp */
and rsp, -16 /* Align rsp to 16-byte boundary */
@ -82,6 +86,7 @@ FUNC _setjmp
xor eax, eax /* Return 0 */
LABEL1:
ret
#endif
ENDFUNC
/*!