aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authormlugg <mlugg@mlugg.co.uk>2024-06-24 15:40:23 +0100
committermlugg <mlugg@mlugg.co.uk>2024-06-26 05:28:04 +0100
commit4cb5318088b2eb66891f0d83b76a2740644b4156 (patch)
tree87e9ae619d448ae4252931ba20393198f47dddc0 /src/Compilation.zig
parent5b523d04690d8a01cb5d97e4f5a35443cb0cbde8 (diff)
downloadzig-4cb5318088b2eb66891f0d83b76a2740644b4156.tar.gz
zig-4cb5318088b2eb66891f0d83b76a2740644b4156.zip
InternPool: rename `Depender` to `AnalSubject`
This is essentially just a rename. I also changed the representation of `AnalSubject` to use a `packed struct` rather than a non-exhaustive enum, but that change is relatively trivial.
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig2
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| {