aboutsummaryrefslogtreecommitdiff
path: root/src/arch/wasm/CodeGen.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2022-03-19 16:05:22 -0400
committerGitHub <noreply@github.com>2022-03-19 16:05:22 -0400
commita318aeed9b8ccec453e9f15415ea3fd20cb13c8d (patch)
tree12c7de4eb436130491aefa1a4e8ef517cd20491e /src/arch/wasm/CodeGen.zig
parent67665286575d406769000b3f3e80d4d03d2cab2b (diff)
parentd56e3c988f0707e996be8eeb7a55f8a90c497a26 (diff)
downloadzig-a318aeed9b8ccec453e9f15415ea3fd20cb13c8d.tar.gz
zig-a318aeed9b8ccec453e9f15415ea3fd20cb13c8d.zip
Merge pull request #11222 from Vexu/dbg_block
stage2: add debug info for payload captures + inline function parameters
Diffstat (limited to 'src/arch/wasm/CodeGen.zig')
-rw-r--r--src/arch/wasm/CodeGen.zig2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/arch/wasm/CodeGen.zig b/src/arch/wasm/CodeGen.zig
index 685528c05d..33e79587df 100644
--- a/src/arch/wasm/CodeGen.zig
+++ b/src/arch/wasm/CodeGen.zig
@@ -1330,6 +1330,8 @@ fn genInst(self: *Self, inst: Air.Inst.Index) !WValue {
.dbg_stmt,
.dbg_inline_begin,
.dbg_inline_end,
+ .dbg_block_begin,
+ .dbg_block_end,
.dbg_var_ptr,
.dbg_var_val,
=> WValue.none,