about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-03-23 16:45:59 +0100
committerptitSeb <sebastien.chev@gmail.com>2021-03-23 16:45:59 +0100
commit601eb63c9a72478c2aaf20803014194efaefa279 (patch)
treed1f4ddbd25a3f3be380be559f4026ba99829961d /src
parentd237d5e807f4a8db92a153d2e1902dd04967a15b (diff)
downloadbox64-601eb63c9a72478c2aaf20803014194efaefa279.tar.gz
box64-601eb63c9a72478c2aaf20803014194efaefa279.zip
[DYNAREC] Small optim on 66 0F 5A opcode
Diffstat (limited to 'src')
-rwxr-xr-xsrc/dynarec/dynarec_arm64_660f.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dynarec/dynarec_arm64_660f.c b/src/dynarec/dynarec_arm64_660f.c
index c4899402..614ccf6e 100755
--- a/src/dynarec/dynarec_arm64_660f.c
+++ b/src/dynarec/dynarec_arm64_660f.c
@@ -178,7 +178,7 @@ uintptr_t dynarec64_660F(dynarec_arm_t* dyn, uintptr_t addr, uintptr_t ip, int n
         case 0x5A:

             INST_NAME("CVTPD2PS Gx, Ex");

             nextop = F8;

-            GETGX(v0);

+            GETGX_empty(v0);

             GETEX(v1, 0);

             FCVTXN(v0, v1);

             break;