Skip to content

Commit

Permalink
VEXIRSBConverter: Fix fp_ret_reg_offset comparison. (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
ltfish authored Oct 30, 2024
1 parent 8eba37b commit e050a09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ailment/converter_vex.py
Original file line number Diff line number Diff line change
Expand Up @@ -767,7 +767,7 @@ def convert(irsb, manager): # pylint:disable=arguments-differ
vex_stmt_idx=DEFAULT_STATEMENT,
)
fp_ret_reg_offset = manager.arch.fp_ret_offset
if fp_ret_reg_offset is not None and fp_ret_reg_offset != ret_expr:
if fp_ret_reg_offset is not None and fp_ret_reg_offset != ret_reg_offset:
fp_ret_expr = Register(
manager.next_atom(),
None,
Expand Down

0 comments on commit e050a09

Please sign in to comment.