From 3dc4cf3dd7eab69d7f9a19807bcda046d16d2b1a Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Sun, 9 Nov 2025 15:45:33 -0800 Subject: [PATCH] Fix non-thread-safe logging call --- passes/techmap/abc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc index 8f72da5a4..29d0cb0f2 100644 --- a/passes/techmap/abc.cc +++ b/passes/techmap/abc.cc @@ -1360,7 +1360,7 @@ void RunAbcState::run(ConcurrentStack &process_pool) did_run = true; return; } - log("Don't call ABC as there is nothing to map.\n"); + logs.log("Don't call ABC as there is nothing to map.\n"); } void emit_global_input_files(const AbcConfig &config)