We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e21239a commit 0626b0aCopy full SHA for 0626b0a
1 file changed
python/architecture.py
@@ -3057,6 +3057,9 @@ def get_flag_write_low_level_il(
3057
elif isinstance(operand, lowlevelil.ILRegister):
3058
operand_list[i].constant = False
3059
operand_list[i].reg = operand.index
3060
+ elif isinstance(operand, lowlevelil.ILFlag):
3061
+ operand_list[i].constant = False
3062
+ operand_list[i].reg = operand.index
3063
else:
3064
operand_list[i].constant = True
3065
operand_list[i].value = operand
0 commit comments