mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-09 19:21:26 +00:00
bufnorm: don't require normalizing $connect's A port
This commit is contained in:
parent
4b57de01ea
commit
1770a7a11b
1 changed files with 4 additions and 0 deletions
|
@ -4137,6 +4137,10 @@ void RTLIL::Module::bufNormalize()
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (cell->type == ID($connect) && portname == ID::A) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
Wire *wire = addWire(NEW_ID, GetSize(sig));
|
Wire *wire = addWire(NEW_ID, GetSize(sig));
|
||||||
sigmap.add(sig, wire);
|
sigmap.add(sig, wire);
|
||||||
cell->setPort(portname, wire);
|
cell->setPort(portname, wire);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue