timing: Fix critical path walking for ECP5 Signed-off-by: David Shah <dave@ds0.me>
diff --git a/common/timing.cc b/common/timing.cc index 37600c8..4e84fff 100644 --- a/common/timing.cc +++ b/common/timing.cc
@@ -434,8 +434,7 @@ int port_clocks; TimingPortClass portClass = ctx->getPortTimingClass(crit_net->driver.cell, port.first, port_clocks); - if (portClass == TMG_CLOCK_INPUT || portClass == TMG_ENDPOINT || portClass == TMG_IGNORE || - portClass == TMG_REGISTER_INPUT) + if (portClass == TMG_CLOCK_INPUT || portClass == TMG_ENDPOINT || portClass == TMG_IGNORE) continue; // And find the fanin net with the latest arrival time if (net_data.count(port.second.net) &&