3
0
Fork 0
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:
Lofty 2022-06-06 15:29:52 +01:00
parent 4afb951283
commit aae2c01326

View file

@ -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;
} }