Pass map_sym_tab to functions pass

This commit is contained in:
Pragyansh Chaturvedi
2025-09-08 22:50:14 +05:30
parent a5a671133c
commit e218e48162
3 changed files with 5 additions and 3 deletions

View File

@ -86,7 +86,8 @@ def process_bpf_chunk(func_node, module, return_type):
return func
def func_proc(tree, module, chunks):
def func_proc(tree, module, chunks, map_sym_tab):
for func_node in chunks:
is_global = False
for decorator in func_node.decorator_list: