From 393aaeaef5180e3a22857b4a3a25e8dcf9996e9d Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Thu, 11 Sep 2025 01:20:51 +0530 Subject: [PATCH] throw unsupported assignment error --- pythonbpf/functions_pass.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pythonbpf/functions_pass.py b/pythonbpf/functions_pass.py index 29a7e92..297f074 100644 --- a/pythonbpf/functions_pass.py +++ b/pythonbpf/functions_pass.py @@ -93,6 +93,8 @@ def handle_assign(func, module, builder, stmt, map_sym_tab, local_sym_tab): print("Unsupported assignment call structure") else: print("Unsupported assignment call function type") + else: + print("Unsupported assignment value type") def handle_expr(func, module, builder, expr, local_sym_tab, map_sym_tab):