mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-06 14:13:23 +00:00
Fix handling of empty cell port assignments (i.e. ignore them)
This commit is contained in:
parent
36cf18ac4c
commit
b3bc7068d1
2 changed files with 6 additions and 0 deletions
|
@ -247,6 +247,9 @@ struct TechmapWorker
|
|||
continue;
|
||||
}
|
||||
|
||||
if (GetSize(it.second) == 0)
|
||||
continue;
|
||||
|
||||
RTLIL::Wire *w = tpl->wires_.at(portname);
|
||||
RTLIL::SigSig c, extra_connect;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue