Merge pull request #9652 from g-w1/p9d

plan9: emit debug info
This commit is contained in:
Veikka Tuominen
2021-09-21 19:38:12 +03:00
committed by GitHub
4 changed files with 414 additions and 70 deletions

View File

@@ -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 => {},
}