From 940213c420af9a7f7f5d85ba6777446effde0e8b Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Mon, 3 Jun 2024 00:34:38 -0600 Subject: [PATCH] Disable LLVM print module at success --- bootstrap/compiler.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bootstrap/compiler.zig b/bootstrap/compiler.zig index 083bd4e..bc62cd9 100644 --- a/bootstrap/compiler.zig +++ b/bootstrap/compiler.zig @@ -3154,7 +3154,7 @@ fn worker_thread(thread_index: u32, cpu_count: *u32) void { const verify_module = true; const print_module_at_failure = true; - const print_module = true; + const print_module = false; if (verify_module) { var verification_message: []const u8 = undefined; @@ -5458,3 +5458,5 @@ pub fn panic(message: []const u8, stack_trace: ?*std.builtin.StackTrace, return_ }, } } + +