about summary refs log tree commit diff stats
path: root/src/dynarec/dynarec_native.c
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-05-30 15:17:13 +0200
committerptitSeb <sebastien.chev@gmail.com>2024-05-30 15:17:13 +0200
commitf0ea459c57b401718d5024c6907a67dce38457c4 (patch)
treeda83ce71c00e3a2166e71a3b15a34c05c9f896c6 /src/dynarec/dynarec_native.c
parentf3d733c3ff27c7127366c65f6ee898a2aeb50fbd (diff)
downloadbox64-f0ea459c57b401718d5024c6907a67dce38457c4.tar.gz
box64-f0ea459c57b401718d5024c6907a67dce38457c4.zip
[ARM64_DYNAREC] That first avx opcode now is 256bits enabled
Diffstat (limited to 'src/dynarec/dynarec_native.c')
-rw-r--r--src/dynarec/dynarec_native.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/dynarec_native.c b/src/dynarec/dynarec_native.c
index 4f509ac1..649ba1a1 100644
--- a/src/dynarec/dynarec_native.c
+++ b/src/dynarec/dynarec_native.c
@@ -559,7 +559,7 @@ void* FillBlock64(dynablock_t* block, uintptr_t addr, int alternate, int is32bit
                 if(helper.insts[i].ymm_zero || helper.insts[k].ymm_zero) {
                     // move to pureg the reg that are present in k (jump to) but not in i (jump from)
                     uint16_t to_purge = helper.insts[k].ymm_zero & ~helper.insts[i].ymm_zero;
-                    helper.insts[k].purge_ymm0 |= to_purge;
+                    helper.insts[k].purge_ymm |= to_purge;
                     helper.insts[k].ymm_zero &= ~to_purge;
                 }
             }