zig

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

commit 4e023c6fa85c3263dbf388be5ef84dae7f1b0022 (tree)
parent eccbb03063b5a491d923e41d7cb82c6e71534327
Author: Andrew Kelley <andrew@ziglang.org>
Date:   Mon,  3 Aug 2020 00:54:30 -0700

stage2: dwarf: fix standard opcode length of LNS_fixed_advance_pc

Diffstat:
Msrc-self-hosted/link.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src-self-hosted/link.zig b/src-self-hosted/link.zig @@ -1253,7 +1253,7 @@ pub const File = struct { 0, // `DW.LNS_negate_stmt` 0, // `DW.LNS_set_basic_block` 0, // `DW.LNS_const_add_pc` - 0, // `DW.LNS_fixed_advance_pc` + 1, // `DW.LNS_fixed_advance_pc` 0, // `DW.LNS_set_prologue_end` 0, // `DW.LNS_set_epilogue_begin` 1, // `DW.LNS_set_isa`