mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-24 16:12:33 +00:00
prevent IdString construction when looking up module from instance type
This commit is contained in:
parent
45c1654938
commit
e5f6755ffd
40 changed files with 94 additions and 94 deletions
|
|
@ -68,7 +68,7 @@ struct ClkbufmapPass : public Pass {
|
|||
if (modules_processed.count(module))
|
||||
return;
|
||||
for (auto cell : module->cells()) {
|
||||
Module *submodule = design->module(cell->type);
|
||||
Module *submodule = design->module(cell->type_impl);
|
||||
if (!submodule)
|
||||
continue;
|
||||
module_queue(design, submodule, modules_sorted, modules_processed);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue