From c796b301d3c8ca9d651cd1b0a2030779141f0987 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Sat, 21 Jul 2018 19:36:48 +0200 Subject: Bugfix in router1: Also bind src_wire Signed-off-by: Clifford Wolf --- common/router1.cc | 2 ++ 1 file changed, 2 insertions(+) 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) { -- cgit v1.2.3