summaryrefslogtreecommitdiff
path: root/python/lowlevelil.py
diff options
context:
space:
mode:
authorFabian Freyer <fabian.freyer@physik.tu-berlin.de>2022-04-05 03:42:59 +0200
committerPeter LaFosse <peter@vector35.com>2022-04-24 10:04:58 -0400
commitd5302fd05f40e606f93aeb4a0aa98cfc2029fa51 (patch)
tree57431619f39823c6a3432fcc85471ee80f1e859c /python/lowlevelil.py
parenta54d37aa45a915a1223476e58331a020ee5a3154 (diff)
Add commonil class for intrinsics
Diffstat (limited to 'python/lowlevelil.py')
-rw-r--r--python/lowlevelil.py2
1 files changed, 1 insertions, 1 deletions
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)