Skip to content

Commit

Permalink
[ARM64_DYNAREC] Very small change on on emit_rol32c helper
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed Nov 15, 2024
1 parent bca0f4d commit eaca84e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/dynarec/arm64/dynarec_arm64_emit_shift.c
Original file line number Diff line number Diff line change
Expand Up @@ -893,7 +893,7 @@ void emit_rol32c(dynarec_arm_t* dyn, int ninst, rex_t rex, int s1, uint32_t c, i
}
IFX(X_OF) {
if(c==1) {
ADDxw_REG_LSR(s3, s1, s1, rex.w?63:31);
EORxw_REG_LSR(s3, s1, s1, rex.w?63:31);
BFIw(xFlags, s3, F_OF, 1);
}
}
Expand Down

0 comments on commit eaca84e

Please sign in to comment.