Skip to content

Commit

Permalink
[RV64_DYNAREC] Fixed another regression in vector (#2086)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksco authored Nov 27, 2024
1 parent 38ee050 commit 05b3224
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dynarec/rv64/dynarec_rv64_660f_vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -1786,7 +1786,7 @@ uintptr_t dynarec64_660F_vector(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t i
VMV_X_S(x4, q1);
} else {
SMREAD();
addr = geted(dyn, addr, ninst, nextop, &ed, x3, x2, &fixedaddress, rex, NULL, 0, 0);
addr = geted(dyn, addr, ninst, nextop, &wback, x3, x2, &fixedaddress, rex, NULL, 0, 0);
LD(x4, wback, fixedaddress);
}
SET_ELEMENT_WIDTH(x1, u8, 1);
Expand Down Expand Up @@ -2140,7 +2140,7 @@ uintptr_t dynarec64_660F_vector(dynarec_rv64_t* dyn, uintptr_t addr, uintptr_t i
VMV_X_S(x4, q1);
} else {
SMREAD();
addr = geted(dyn, addr, ninst, nextop, &ed, x3, x2, &fixedaddress, rex, NULL, 0, 0);
addr = geted(dyn, addr, ninst, nextop, &wback, x3, x2, &fixedaddress, rex, NULL, 0, 0);
LD(x4, wback, fixedaddress);
}
SET_ELEMENT_WIDTH(x1, u8, 1);
Expand Down

0 comments on commit 05b3224

Please sign in to comment.