Skip to content

Commit

Permalink
[DYNAREC] Fixed a typo which leads to regression (#2121)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksco authored Dec 6, 2024
1 parent e305e5f commit b250056
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynarec/dynarec_native_pass.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ uintptr_t native_pass(dynarec_native_t* dyn, uintptr_t addr, int alternate, int
else { tmp1=x1; tmp2=x2; tmp3=x3; }
fpu_purgecache(dyn, ninst, 0, tmp1, tmp2, tmp3);
#else
fpu_purgecache(dyn, next, 0, x1, x2, x3);
fpu_purgecache(dyn, ninst, 0, x1, x2, x3);
#endif
}
if(dyn->insts[next].x64.barrier&BARRIER_FLAGS) {
Expand Down

0 comments on commit b250056

Please sign in to comment.