Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/dynarec/la64/dynarec_la64_f0.c
Original file line number Diff line number Diff line change
Expand Up @@ -1434,7 +1434,7 @@ uintptr_t dynarec64_F0(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int ni
LOCK_3264_CROSS_8BYTE(ADDI_D(x4, gd, 0), x1, wback, x4, x5, x6);
MARK3;
}
MV(gd, x1);
MVxw(gd, x1);
}
break;
case 0xF7:
Expand Down
2 changes: 1 addition & 1 deletion src/dynarec/la64/dynarec_la64_f20f.c
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ uintptr_t dynarec64_F20F(dynarec_la64_t* dyn, uintptr_t addr, uintptr_t ip, int
case 0x51:
INST_NAME("SQRTSD Gx, Ex");
nextop = F8;
GETGX_empty(v0);
GETGX(v0, 1);
d1 = fpu_get_scratch(dyn);
GETEXSD(d0, 0, 0);
FSQRT_D(d1, d0);
Expand Down
Loading