Skip to content

Commit

Permalink
Rename registers
Browse files Browse the repository at this point in the history
  • Loading branch information
Rot127 committed Jun 19, 2023
1 parent 084b207 commit bea41b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions librz/analysis/arch/arm/arm_il32.c
Original file line number Diff line number Diff line change
Expand Up @@ -1274,13 +1274,13 @@ static RzILOpEffect *msr(cs_insn *insn, bool is_thumb) {
bool update_f = false;
bool update_s = false;
switch (dst->reg) {
case ARM_SYSREG_APSR_NZCVQ:
case ARM_MCLASSSYSREG_APSR_NZCVQ:
update_f = true;
break;
case ARM_SYSREG_APSR_G:
case ARM_MCLASSSYSREG_APSR_G:
update_s = true;
break;
case ARM_SYSREG_APSR_NZCVQG:
case ARM_MCLASSSYSREG_APSR_NZCVQG:
update_f = true;
update_s = true;
break;
Expand Down

0 comments on commit bea41b2

Please sign in to comment.