commit c91b06ef52f31090b3c8fda9b9a419bf1391d805 (tree)
parent 1826ba69d81e182f6bd7cf4ea9b944bd6c713a28
Author: Matthew Lugg <mlugg@mlugg.co.uk>
Date: Wed, 4 Mar 2026 19:13:59 +0000
incr-check: fix successful -fno-emit-bin updates
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/tools/incr-check.zig b/tools/incr-check.zig
@@ -338,7 +338,7 @@ const Eval = struct {
if (eval.target.backend == .sema) {
try eval.checkSuccessOutcome(update, null, prog_node);
- // This message indicates the end of the update.
+ continue;
}
const digest = r.takeArray(Cache.bin_digest_len) catch unreachable;
@@ -352,7 +352,6 @@ const Eval = struct {
const bin_path = try Dir.path.join(arena, &.{ result_dir, bin_name });
try eval.checkSuccessOutcome(update, bin_path, prog_node);
- // This message indicates the end of the update.
},
else => {
// Ignore other messages.