From 5730756389247485689220739604918825879535 Mon Sep 17 00:00:00 2001 From: Glenn Smith Date: Mon, 2 Feb 2026 13:42:35 -0500 Subject: Python API: Properly extract LLIL flags in get_flag_write_low_level_il --- python/lowlevelil.py | 1 + 1 file changed, 1 insertion(+) (limited to 'python/lowlevelil.py') 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', -- cgit v1.3.1