From e81b5b810d35c156280d0c649291ce5617e10fb3 Mon Sep 17 00:00:00 2001 From: Akash Levy Date: Fri, 13 Feb 2026 01:04:59 -0800 Subject: [PATCH] Lack of node retention should only be a warning --- 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 66f6e76db..46bdcfc92 100644 --- a/passes/techmap/abc.cc +++ b/passes/techmap/abc.cc @@ -1485,7 +1485,7 @@ void AbcModuleState::extract(AbcSigMap &assign_map, dict & } wire->add_strpool_attribute(ID::src, src_pool); } else if (run_abc.config.abc_node_retention) { - log_error("No node retention sources found for wire %s\n", w->name.c_str()); + log_warning("No node retention sources found for wire %s\n", w->name.c_str()); } if (markgroups) wire->attributes[ID::abcgroup] = map_autoidx;