mirror of
https://github.com/YosysHQ/yosys
synced 2026-07-23 23:52:32 +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
|
|
@ -276,7 +276,7 @@ struct SplitnetsPass : public Pass {
|
|||
|
||||
for (auto nid : new_port_ids)
|
||||
{
|
||||
int nlen = GetSize(design->module(cell->type)->wire(nid));
|
||||
int nlen = GetSize(design->module(cell->type_impl)->wire(nid));
|
||||
if (offset + nlen > GetSize(sig))
|
||||
nlen = GetSize(sig) - offset;
|
||||
if (nlen > 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue