diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-02-04 03:00:13 +0000 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-02-04 18:38:40 +0000 |
| commit | 269c1ae649017836f15313d1d4977402be11eed5 (patch) | |
| tree | c38b9e06df7c14f90db02cb6afa0ee42c7e7fbfa /src/Compilation.zig | |
| parent | a0004cebc255405764e889effb25a42fe07d8463 (diff) | |
| download | zig-269c1ae649017836f15313d1d4977402be11eed5.tar.gz zig-269c1ae649017836f15313d1d4977402be11eed5.zip | |
Zcu: incremental compilation improvements
* Mark root Decls for re-analysis separately
* Check for re-analysis of root Decls
* Remove `outdated` entry when analyzing fn body
* Remove legacy `outdated` field from Decl analysis state
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 5615808ee2..06c0dc7e7f 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -3548,7 +3548,6 @@ fn processOneJob(comp: *Compilation, job: Job, prog_node: *std.Progress.Node) !v switch (decl.analysis) { .unreferenced => unreachable, .in_progress => unreachable, - .outdated => unreachable, .file_failure, .sema_failure, |
