From c91b06ef52f31090b3c8fda9b9a419bf1391d805 Mon Sep 17 00:00:00 2001 From: Matthew Lugg Date: Wed, 4 Mar 2026 19:13:59 +0000 Subject: [PATCH] incr-check: fix successful -fno-emit-bin updates --- tools/incr-check.zig | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/incr-check.zig b/tools/incr-check.zig index 87a782c2d314d7e2467fbd8e6fe35a3e27bf0489..6b3351b315a3c23a443faca94c61bae0367a304e 100644 --- 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. -- 2.54.0