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/highlevelil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/highlevelil.py') diff --git a/python/highlevelil.py b/python/highlevelil.py index e2a53bb5..c35fdd12 100644 --- a/python/highlevelil.py +++ b/python/highlevelil.py @@ -1746,7 +1746,7 @@ class HighLevelILTrap(HighLevelILInstruction, Terminal): @dataclass(frozen=True, repr=False, eq=False) -class HighLevelILIntrinsic(HighLevelILInstruction): +class HighLevelILIntrinsic(HighLevelILInstruction, Intrinsic): @property def intrinsic(self) -> 'lowlevelil.ILIntrinsic': return self.get_intrinsic(0) -- cgit v1.3.1