diff options
| author | Matthew Lugg <mlugg@mlugg.co.uk> | 2024-06-27 00:14:03 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-27 00:14:03 +0100 |
| commit | a016ca61706b300534a3a3a3c656b9b0ec24591c (patch) | |
| tree | 87e9ae619d448ae4252931ba20393198f47dddc0 /src/Compilation.zig | |
| parent | 3e9ab6aa7b2d90c25cb906d425a148abf9da3dcb (diff) | |
| parent | 4cb5318088b2eb66891f0d83b76a2740644b4156 (diff) | |
| download | zig-a016ca61706b300534a3a3a3c656b9b0ec24591c.tar.gz zig-a016ca61706b300534a3a3a3c656b9b0ec24591c.zip | |
Merge pull request #20424 from mlugg/the-great-decl-split
Dismantle Decl a little bit more
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index de8f5542e3..b30f65ad11 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -3494,7 +3494,7 @@ fn processOneJob(comp: *Compilation, job: Job, prog_node: std.Progress.Node) !vo .{@errorName(err)}, )); decl.analysis = .codegen_failure; - try module.retryable_failures.append(gpa, InternPool.Depender.wrap(.{ .decl = decl_index })); + try module.retryable_failures.append(gpa, InternPool.AnalSubject.wrap(.{ .decl = decl_index })); }; }, .analyze_mod => |pkg| { |
