3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-07-19 05:35:47 +00:00

Fixed no sources log error to only output error if node_retention mode is on

This commit is contained in:
AdvaySingh1 2026-02-04 10:22:24 -08:00
parent 0e0740a3a0
commit 43027720d2

View file

@ -1483,7 +1483,7 @@ void AbcModuleState::extract(AbcSigMap &assign_map, dict<SigSpec, std::string> &
}
}
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());
}