mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
sta: warn on unrecognised cells only once
This commit is contained in:
parent
4afb951283
commit
aae2c01326
|
@ -58,10 +58,13 @@ struct StaWorker
|
||||||
{
|
{
|
||||||
TimingInfo timing;
|
TimingInfo timing;
|
||||||
|
|
||||||
|
pool<IdString> unrecognised_cells;
|
||||||
|
|
||||||
for (auto cell : module->cells())
|
for (auto cell : module->cells())
|
||||||
{
|
{
|
||||||
Module *inst_module = design->module(cell->type);
|
Module *inst_module = design->module(cell->type);
|
||||||
if (!inst_module) {
|
if (!inst_module) {
|
||||||
|
if (unrecognised_cells.insert(cell->type).second)
|
||||||
log_warning("Cell type '%s' not recognised! Ignoring.\n", log_id(cell->type));
|
log_warning("Cell type '%s' not recognised! Ignoring.\n", log_id(cell->type));
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue