3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-09-06 09:51:10 +00:00

bufnorm: don't require normalizing $connect's A port

This commit is contained in:
Jannis Harder 2025-08-14 17:38:24 +02:00
parent 4b57de01ea
commit 1770a7a11b

View file

@ -4137,6 +4137,10 @@ void RTLIL::Module::bufNormalize()
continue;
}
if (cell->type == ID($connect) && portname == ID::A) {
continue;
}
Wire *wire = addWire(NEW_ID, GetSize(sig));
sigmap.add(sig, wire);
cell->setPort(portname, wire);