aboutsummaryrefslogtreecommitdiff
path: root/src/Module.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2021-09-21 19:38:12 +0300
committerGitHub <noreply@github.com>2021-09-21 19:38:12 +0300
commita2dd0c387dd9e08c0147490b0667146758b6a43b (patch)
tree8891c006cb48c551361af4291925b90f6678b067 /src/Module.zig
parentd722f0cc627c34f2c18681202a512d9aaa58fb18 (diff)
parentf697e0a326b06b7dcf641fbd61110be756407dcf (diff)
downloadzig-a2dd0c387dd9e08c0147490b0667146758b6a43b.tar.gz
zig-a2dd0c387dd9e08c0147490b0667146758b6a43b.zip
Merge pull request #9652 from g-w1/p9d
plan9: emit debug info
Diffstat (limited to 'src/Module.zig')
-rw-r--r--src/Module.zig4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Module.zig b/src/Module.zig
index 6a183db21f..fd275b507f 100644
--- a/src/Module.zig
+++ b/src/Module.zig
@@ -3707,7 +3707,9 @@ fn scanDecl(iter: *ScanDeclIter, decl_sub_index: usize, flags: u4) SemaError!voi
mod.comp.work_queue.writeItemAssumeCapacity(.{ .update_line_number = decl });
},
.plan9 => {
- // TODO implement for plan9
+ // TODO Look into detecting when this would be unnecessary by storing enough state
+ // in `Decl` to notice that the line number did not change.
+ mod.comp.work_queue.writeItemAssumeCapacity(.{ .update_line_number = decl });
},
.c, .wasm, .spirv => {},
}