Skip to content

Commit

Permalink
[DYNAREC] Fixed a regression with the improved emit_pf helper
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitSeb committed May 22, 2024
1 parent 968fc3f commit ff702c0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/dynarec/dynarec_arm_emit_tests.c
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ void emit_test32(dynarec_arm_t* dyn, int ninst, int s1, int s2, int s3, int s4)
BFI(xFlags, s4, F_SF, 1);
}
IFX(X_PF) {
emit_pf(dyn, ninst, s1, s4);
emit_pf(dyn, ninst, s3, s4);
}
}

Expand Down Expand Up @@ -324,7 +324,7 @@ void emit_test16(dynarec_arm_t* dyn, int ninst, int s1, int s2, int s3, int s4)
BFI(xFlags, s4, F_SF, 1);
}
IFX(X_PF) {
emit_pf(dyn, ninst, s1, s4);
emit_pf(dyn, ninst, s3, s4);
}
}

Expand Down Expand Up @@ -354,6 +354,6 @@ void emit_test8(dynarec_arm_t* dyn, int ninst, int s1, int s2, int s3, int s4)
BFI(xFlags, s4, F_SF, 1);
}
IFX(X_PF) {
emit_pf(dyn, ninst, s1, s4);
emit_pf(dyn, ninst, s3, s4);
}
}

0 comments on commit ff702c0

Please sign in to comment.