summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2026-02-02 13:42:35 -0500
committerGlenn Smith <glenn@vector35.com>2026-02-18 14:04:53 -0500
commit5730756389247485689220739604918825879535 (patch)
tree3d841137f47d5057bc5412b95d0f70e7c4234601 /python/lowlevelil.py
parent1897812185980436930607387186292384077778 (diff)
Python API: Properly extract LLIL flags in get_flag_write_low_level_il
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/python/lowlevelil.py b/python/lowlevelil.py
index 93972a1f..57241a60 100644
--- a/python/lowlevelil.py
+++ b/python/lowlevelil.py
@@ -50,6 +50,7 @@ Index = Union[ExpressionIndex, InstructionIndex]
TokenList = List['function.InstructionTextToken']
InstructionOrExpression = Union['LowLevelILInstruction', Index]
ILRegisterType = Union[str, 'ILRegister', int]
+ILOperandType = Union[ILRegisterType, 'architecture.ILFlag', int]
LLILInstructionsType = Generator['LowLevelILInstruction', None, None]
OperandsType = Tuple[ExpressionIndex, ExpressionIndex, ExpressionIndex, ExpressionIndex]
LowLevelILOperandType = Union['LowLevelILOperationAndSize', 'ILRegister', 'ILFlag', 'ILIntrinsic', 'ILRegisterStack',