From d5302fd05f40e606f93aeb4a0aa98cfc2029fa51 Mon Sep 17 00:00:00 2001 From: Fabian Freyer Date: Tue, 5 Apr 2022 03:42:59 +0200 Subject: Add commonil class for intrinsics --- python/lowlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/lowlevelil.py') diff --git a/python/lowlevelil.py b/python/lowlevelil.py index bf984b2d..cdcd1138 100644 --- a/python/lowlevelil.py +++ b/python/lowlevelil.py @@ -2210,7 +2210,7 @@ class LowLevelILIf(LowLevelILInstruction, ControlFlow): @dataclass(frozen=True, repr=False, eq=False) -class LowLevelILIntrinsic(LowLevelILInstruction): +class LowLevelILIntrinsic(LowLevelILInstruction, Intrinsic): @property def output(self) -> List[Union[ILFlag, ILRegister]]: return self._get_reg_or_flag_list(0) -- cgit v1.3.1