about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-10-12 15:09:12 +0800
committerGitHub <noreply@github.com>2025-10-12 09:09:12 +0200
commitaf437fa354f387fb563ded1a8db7c5051148b5cd (patch)
tree884ca4309f190103fe2aba17952e6d3843b23de6 /src
parent2a559622c947c009565ab7cac264b799832bddde (diff)
downloadbox64-af437fa354f387fb563ded1a8db7c5051148b5cd.tar.gz
box64-af437fa354f387fb563ded1a8db7c5051148b5cd.zip
[ARM64_DYNAREC] Fixed a typo in iret_to_epilog (#3059)
Diffstat (limited to 'src')
-rw-r--r--src/dynarec/arm64/dynarec_arm64_helper.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/arm64/dynarec_arm64_helper.c b/src/dynarec/arm64/dynarec_arm64_helper.c
index 4e6b4c02..2f16ecac 100644
--- a/src/dynarec/arm64/dynarec_arm64_helper.c
+++ b/src/dynarec/arm64/dynarec_arm64_helper.c
@@ -748,7 +748,7 @@ void iret_to_epilog(dynarec_arm_t* dyn, uintptr_t ip, int ninst, int is32bits, i
         POP1_32(x5);   //ss
     }
     // check if SS is NULL
-    CBZw(x5, MARK);
+    CBZw_MARK(x5);
     // POP SS
     STRH_U12(x5, xEmu, offsetof(x64emu_t, segs[_SS]));
     STRw_U12(xZR, xEmu, offsetof(x64emu_t, segs_serial[_SS]));