From e0dbaf8b50e80e2b0a5edcdf088931953b43bc66 Mon Sep 17 00:00:00 2001 From: Jordan Wiens Date: Tue, 20 May 2025 17:08:55 -0400 Subject: relax caller_sites filter --- python/function.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'python/function.py') diff --git a/python/function.py b/python/function.py index d2c677a7..2a3e2228 100644 --- a/python/function.py +++ b/python/function.py @@ -3073,7 +3073,7 @@ class Function: :rtype: list(ReferenceSource) """ for site in self.view.get_code_refs(self.start): - if isinstance(site.llil, lowlevelil.LowLevelILCall): + if isinstance(site.llil, Localcall): yield site @property -- cgit v1.3.1