about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2023-11-04 17:17:27 +0100
committerptitSeb <sebastien.chev@gmail.com>2023-11-04 17:17:27 +0100
commit60925658bbb3a7f7383f138608ed7d1b17e421bc (patch)
treeea7d31f5b738a543e743706898d7b0793cc4749f /src
parent5ef9ea35d62a4281917d3d747298bfff399f1e97 (diff)
downloadbox64-60925658bbb3a7f7383f138608ed7d1b17e421bc.tar.gz
box64-60925658bbb3a7f7383f138608ed7d1b17e421bc.zip
[RV64_DYNAREC] Fix test failling
Diffstat (limited to 'src')
-rw-r--r--src/dynarec/rv64/dynarec_rv64_f20f.c27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/dynarec/rv64/dynarec_rv64_f20f.c b/src/dynarec/rv64/dynarec_rv64_f20f.c
index e2ce3aac..62b66544 100644
--- a/src/dynarec/rv64/dynarec_rv64_f20f.c
+++ b/src/dynarec/rv64/dynarec_rv64_f20f.c
@@ -146,33 +146,6 @@ uintptr_t dynarec64_F20F(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t ip, int
             opcode = F8;
             switch(opcode) {
 
-                case 0xF0:
-                    INST_NAME("(unsupported) CRC32 Gd, Eb)");
-                    nextop = F8;
-                    addr = fakeed(dyn, addr, ninst, nextop);
-                    SETFLAGS(X_ALL, SF_SET);    // Hack to set flags in "don't care" state
-                    GETIP(ip);
-                    STORE_XEMU_CALL(x3);
-                    CALL(native_ud, -1);
-                    LOAD_XEMU_CALL();
-                    jump_to_epilog(dyn, 0, xRIP, ninst);
-                    *need_epilog = 0;
-                    *ok = 0;
-                    break;
-                case 0xF1:
-                    INST_NAME("(unsupported) CRC32 Gd, Ed)");
-                    nextop = F8;
-                    addr = fakeed(dyn, addr, ninst, nextop);
-                    SETFLAGS(X_ALL, SF_SET);    // Hack to set flags in "don't care" state
-                    GETIP(ip);
-                    STORE_XEMU_CALL(x3);
-                    CALL(native_ud, -1);
-                    LOAD_XEMU_CALL();
-                    jump_to_epilog(dyn, 0, xRIP, ninst);
-                    *need_epilog = 0;
-                    *ok = 0;
-                    break;
-
                 default:
                     DEFAULT;
             }