[ARM64_DYNAREC] Small optim in emit_sar8c helper

This commit is contained in:
ptitSeb 2024-11-16 13:23:23 +01:00
parent 42eae3e1b4
commit 5adabbbcaa

View File

@ -587,8 +587,7 @@ void emit_sar8c(dynarec_arm_t* dyn, int ninst, int s1, uint32_t c, int s3, int s
SET_DFNONE(s4);
}
if(c<8) IFX(X_CF) {
ASRw(s3, s1, c-1);
BFIw(xFlags, s3, 0, 1);
BFXILw(xFlags, s1, c-1, 1);
}
ASRw(s1, s1, c);
IFX(X_PEND) {