From c9587d3e4013011b703ded68aefafba41550bbd7 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Mon, 27 May 2024 10:48:50 -0700 Subject: [PATCH] CLI: add missing call to root progress node end() cleans up unwanted "LLVM Emit Object" being left on the screen --- src/main.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.zig b/src/main.zig index 3ee90671b2..a1a7260552 100644 --- a/src/main.zig +++ b/src/main.zig @@ -3411,6 +3411,7 @@ fn buildOutputType( const root_prog_node = std.Progress.start(.{ .disable_printing = (color == .off), }); + defer root_prog_node.end(); updateModule(comp, color, root_prog_node) catch |err| switch (err) { error.SemanticAnalyzeFail => {