From 4e023c6fa85c3263dbf388be5ef84dae7f1b0022 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 3 Aug 2020 00:54:30 -0700 Subject: [PATCH] stage2: dwarf: fix standard opcode length of LNS_fixed_advance_pc --- src-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 index 72e059743b..ed2b92e5d6 100644 --- 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`