Skip to content

Commit

Permalink
[ARM64_DYNAREC] Small fix for 80 /4 opcode on regs with no flags (sho…
Browse files Browse the repository at this point in the history
…uld help #2243)
  • Loading branch information
ptitSeb committed Jan 8, 2025
1 parent 99d0889 commit ada8efc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dynarec/arm64/dynarec_arm64_00.c
Original file line number Diff line number Diff line change
Expand Up @@ -1144,7 +1144,8 @@ uintptr_t dynarec64_00(dynarec_arm_t* dyn, uintptr_t addr, uintptr_t ip, int nin
if(mask)
ANDx_mask(wback, wback, (mask>>12)&1, mask&0x3F, (mask>>6)&0x3F);
else {
MOV32w(x1, ((uint32_t)~u8)<<wb2);
u8 = ~u8;
MOV32w(x1, ((uint32_t)u8)<<wb2);
BICx_REG(wback, wback, x1);
}
}
Expand Down

0 comments on commit ada8efc

Please sign in to comment.