Skip to content

Commit e0dbaf8

Browse files
committed
relax caller_sites filter
1 parent d4115b6 commit e0dbaf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/function.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3073,7 +3073,7 @@ def caller_sites(self) -> Generator['binaryview.ReferenceSource', None, None]:
30733073
:rtype: list(ReferenceSource)
30743074
"""
30753075
for site in self.view.get_code_refs(self.start):
3076-
if isinstance(site.llil, lowlevelil.LowLevelILCall):
3076+
if isinstance(site.llil, Localcall):
30773077
yield site
30783078

30793079
@property

0 commit comments

Comments
 (0)