Files
python-bpf/pythonbpf/debuginfo/dtypes.py
2025-09-30 20:18:26 +05:30

7 lines
221 B
Python

import llvmlite.ir as ir
class DwarfBehaviorEnum:
ERROR_IF_MISMATCH = ir.Constant(ir.IntType(32), 1)
WARNING_IF_MISMATCH = ir.Constant(ir.IntType(32), 2)
OVERRIDE_USE_LARGEST = ir.Constant(ir.IntType(32), 7)