Pass structs_sym_tab to maps_proc

This commit is contained in:
Pragyansh Chaturvedi
2025-11-18 03:29:58 +05:30
parent e9bb90cb70
commit 39a0746db4
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@ def processor(source_code, filename, module):
license_processing(tree, module)
globals_processing(tree, module)
structs_sym_tab = structs_proc(tree, module, bpf_chunks)
map_sym_tab = maps_proc(tree, module, bpf_chunks)
map_sym_tab = maps_proc(tree, module, bpf_chunks, structs_sym_tab)
func_proc(tree, module, bpf_chunks, map_sym_tab, structs_sym_tab)
globals_list_creation(tree, module)