aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/router1.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/common/router1.cc b/common/router1.cc
index 79a6bf5d..1ea50448 100644
--- a/common/router1.cc
+++ b/common/router1.cc
@@ -307,6 +307,8 @@ struct Router
src_wires[src_wire] = ctx->getWireDelay(src_wire).maxDelay();
} else {
// re-use existing routes as much as possible
+ if (net_info->wires.count(src_wire) == 0)
+ ctx->bindWire(src_wire, net_name, STRENGTH_WEAK);
src_wires[src_wire] = ctx->getWireDelay(src_wire).maxDelay();
for (auto &user_it : net_info->users) {