diff options
Diffstat (limited to 'python/function.py')
| -rw-r--r-- | python/function.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/python/function.py b/python/function.py index e909ed0a..9a0f099a 100644 --- a/python/function.py +++ b/python/function.py @@ -567,6 +567,14 @@ class Function: return BasicBlockList(self) @property + def is_thunk(self) -> bool: + """Returns True if the function starts with a Tailcall (read-only)""" + if self.llil_if_available is not None: + return self.llil_if_available.is_thunk + else: + return False + + @property def comments(self) -> Dict[int, str]: """Dict of comments (read-only)""" count = ctypes.c_ulonglong() |
