1
0
mirror of https://github.com/YosysHQ/nextpnr.git synced 2026-03-02 01:50:38 +00:00

we care only if there is net

This commit is contained in:
Miodrag Milanovic
2026-02-11 08:45:26 +01:00
parent 8613ee17c8
commit 3da2769e31

View File

@@ -602,6 +602,8 @@ void GateMateImpl::postRoute()
for (auto &port : cell->ports) {
if (port.second.type != PORT_IN)
continue;
if (!cell->getPort(port.second.name))
continue;
inversion_before_bridges.insert(
{std::make_pair(cell->name, port.first), need_inversion_remove_me_later(cell, port.first)});
}