zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit c0654d2db2cd66ee59f2147fbbb19d890e70bed1 (tree)
parent d4bb2b1513ce63bbe02199f3eee5cd6971f1d07e
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Fri, 31 Jul 2020 22:58:57 -0700

std.dwarf: add LNCT constants from DWARF v5

Diffstat:
Mlib/std/dwarf_bits.zig | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/lib/std/dwarf_bits.zig b/lib/std/dwarf_bits.zig @@ -689,3 +689,11 @@ pub const UT_split_compile = 0x05; pub const UT_split_type = 0x06; pub const UT_lo_user = 0x80; pub const UT_hi_user = 0xff; + +pub const LNCT_path = 0x1; +pub const LNCT_directory_index = 0x2; +pub const LNCT_timestamp = 0x3; +pub const LNCT_size = 0x4; +pub const LNCT_MD5 = 0x5; +pub const LNCT_lo_user = 0x2000; +pub const LNCT_hi_user = 0x3fff;