about summary refs log tree commit diff stats
path: root/src/dynarec
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2024-11-15 14:37:16 +0100
committerptitSeb <sebastien.chev@gmail.com>2024-11-15 14:37:16 +0100
commita39c8aa5c5521fde566cd736ff32e78ca5484960 (patch)
treec1c67f46a300db96400f6bd35c7fa46ac9c232e6 /src/dynarec
parent27745ceebb950edca7a84761a1f8a0fd0768bc39 (diff)
downloadbox64-a39c8aa5c5521fde566cd736ff32e78ca5484960.tar.gz
box64-a39c8aa5c5521fde566cd736ff32e78ca5484960.zip
[INTERPRETER] Some cleanup on base logic/math/shift operations
Diffstat (limited to 'src/dynarec')
-rw-r--r--src/dynarec/dynarec.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/dynarec/dynarec.c b/src/dynarec/dynarec.c
index 5dddc23b..858709e3 100644
--- a/src/dynarec/dynarec.c
+++ b/src/dynarec/dynarec.c
@@ -106,9 +106,6 @@ void DynaCall(x64emu_t* emu, uintptr_t addr)
     multiuint_t old_op1 = emu->op1;
     multiuint_t old_op2 = emu->op2;
     multiuint_t old_res = emu->res;
-    multiuint_t old_op1_sav= emu->op1_sav;
-    multiuint_t old_res_sav= emu->res_sav;
-    deferred_flags_t old_df_sav= emu->df_sav;
     // uc_link
     void* old_uc_link = emu->uc_link;
     emu->uc_link = NULL;
@@ -134,9 +131,6 @@ void DynaCall(x64emu_t* emu, uintptr_t addr)
         emu->op1 = old_op1;
         emu->op2 = old_op2;
         emu->res = old_res;
-        emu->op1_sav = old_op1_sav;
-        emu->res_sav = old_res_sav;
-        emu->df_sav = old_df_sav;
         // and the old registers
         emu->eflags = old_eflags;
         R_RBX = old_rbx;