authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-07-31 22:58:57-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-08-02 11:09:39-07:00
logc0654d2db2cd66ee59f2147fbbb19d890e70bed1
treea1389defa0c53dd155a49057a07c46d61a91cd23
parentd4bb2b1513ce63bbe02199f3eee5cd6971f1d07e

std.dwarf: add LNCT constants from DWARF v5


1 files changed, 8 insertions(+), 0 deletions(-)

lib/std/dwarf_bits.zig+8
...@@ -689,3 +689,11 @@ pub const UT_split_compile = 0x05;...@@ -689,3 +689,11 @@ pub const UT_split_compile = 0x05;
689pub const UT_split_type = 0x06;689pub const UT_split_type = 0x06;
690pub const UT_lo_user = 0x80;690pub const UT_lo_user = 0x80;
691pub const UT_hi_user = 0xff;691pub const UT_hi_user = 0xff;
692
693pub const LNCT_path = 0x1;
694pub const LNCT_directory_index = 0x2;
695pub const LNCT_timestamp = 0x3;
696pub const LNCT_size = 0x4;
697pub const LNCT_MD5 = 0x5;
698pub const LNCT_lo_user = 0x2000;
699pub const LNCT_hi_user = 0x3fff;