about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorYang Liu <liuyang22@iscas.ac.cn>2025-09-01 16:54:31 +0800
committerGitHub <noreply@github.com>2025-09-01 10:54:31 +0200
commitf46987b6af1459046a9fbc590e6814a9e8800125 (patch)
tree6547102f9d4f00e7a01a672573f7b4e61a094546 /src
parent2af7492cf8ba791aa199f3487d2171d9451d2d13 (diff)
downloadbox64-f46987b6af1459046a9fbc590e6814a9e8800125.tar.gz
box64-f46987b6af1459046a9fbc590e6814a9e8800125.zip
[LA64_DYNAREC] Fixed a typo in 0F 53 RCPPS opcode (#2991)
Diffstat (limited to 'src')
-rw-r--r--src/dynarec/la64/dynarec_la64_0f.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/dynarec/la64/dynarec_la64_0f.c b/src/dynarec/la64/dynarec_la64_0f.c
index fdd76404..5dc1b5ba 100644
--- a/src/dynarec/la64/dynarec_la64_0f.c
+++ b/src/dynarec/la64/dynarec_la64_0f.c
@@ -790,7 +790,7 @@ uintptr_t dynarec64_0F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int ni
             SKIPTEST(x1);
             GETEX(q0, 0, 0);
             GETGX_empty(q1);
-            if(cpuext.frecipe){
+            if (cpuext.frecipe) {
                 VFRSQRTE_S(q1, q0);
             } else {
                 VFRSQRT_S(q1, q0);
@@ -802,12 +802,11 @@ uintptr_t dynarec64_0F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int ni
             SKIPTEST(x1);
             GETEX(q0, 0, 0);
             GETGX_empty(q1);
-            if(cpuext.frecipe){
+            if (cpuext.frecipe) {
                 VFRECIPE_S(q1, q0);
-            }else{
+            } else {
                 VFRECIP_S(q1, q0);
             }
-            VFRECIP_S(q1, q0);
             break;
         case 0x54:
             INST_NAME("ANDPS Gx, Ex");