mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-02-03 23:33:07 +00:00
Another bugfix in router1
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
@@ -567,7 +567,7 @@ remove_wire_arcs:
|
||||
NetInfo *ripupPipNet = ctx->getConflictingPipNet(pip);
|
||||
NPNR_ASSERT(ripupPipNet != nullptr);
|
||||
|
||||
if (ripupPipNet != net_info || net_info->wires.at(cursor).pip != pip)
|
||||
if (ripupPipNet != net_info || !net_info->wires.count(cursor) || net_info->wires.at(cursor).pip != pip)
|
||||
ripup_pip(pip);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user