summaryrefslogtreecommitdiff
path: root/python/commonil.py
diff options
context:
space:
mode:
authorPeter LaFosse <peter@vector35.com>2022-01-20 13:17:41 -0500
committerPeter LaFosse <peter@vector35.com>2022-01-20 13:17:41 -0500
commitd7dae709f93ef24516ae2db2f1f0d0ee333764f5 (patch)
tree548ff46b743ca644ff16007b9411539e01ffdd3b /python/commonil.py
parent65c1ab279b34f11070a450de993886df9c7353ec (diff)
Rework IL inheritance for Call instructions
Diffstat (limited to 'python/commonil.py')
-rw-r--r--python/commonil.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/python/commonil.py b/python/commonil.py
index 35884bf1..9e9f6fea 100644
--- a/python/commonil.py
+++ b/python/commonil.py
@@ -115,7 +115,12 @@ class Syscall(Call):
@dataclass(frozen=True, repr=False, eq=False)
-class Tailcall(Call):
+class Localcall(Call):
+ pass
+
+
+@dataclass(frozen=True, repr=False, eq=False)
+class Tailcall(Localcall):
pass
@dataclass(frozen=True, repr=False, eq=False)