improve label name

This commit is contained in:
Katayama Hirofumi MZ 2025-03-30 08:35:56 +09:00
parent 39d2613c21
commit 131daf77e6

View file

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