mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
10 lines
154 B
Python
10 lines
154 B
Python
import ast
|
|
|
|
import llvmlite.ir as ir
|
|
|
|
|
|
def generate_function_debug_info(
|
|
func_node: ast.FunctionDef, module: ir.Module, func: ir.Function
|
|
):
|
|
pass
|