From 43027720d2aafc289508d3bb542a124327e70388 Mon Sep 17 00:00:00 2001 From: AdvaySingh1 Date: Wed, 4 Feb 2026 10:22:24 -0800 Subject: [PATCH] Fixed no sources log error to only output error if node_retention mode is on --- 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 48a287c92..085d2e9db 100644 --- a/passes/techmap/abc.cc +++ b/passes/techmap/abc.cc @@ -1483,7 +1483,7 @@ void AbcModuleState::extract(AbcSigMap &assign_map, dict & } } wire->add_strpool_attribute(ID::src, src_pool); - } else { + } else if (run_abc.config.abc_node_retention) { log_error("No node retention sources found for wire %s\n", w->name.c_str()); }