diff options
| author | Fabian Freyer <fabian.freyer@physik.tu-berlin.de> | 2022-04-05 03:42:59 +0200 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2022-04-24 10:04:58 -0400 |
| commit | d5302fd05f40e606f93aeb4a0aa98cfc2029fa51 (patch) | |
| tree | 57431619f39823c6a3432fcc85471ee80f1e859c /python/highlevelil.py | |
| parent | a54d37aa45a915a1223476e58331a020ee5a3154 (diff) | |
Add commonil class for intrinsics
Diffstat (limited to 'python/highlevelil.py')
| -rw-r--r-- | python/highlevelil.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
