From f28186bb1b2ed554cb4053ebd09ec11f8193f508 Mon Sep 17 00:00:00 2001 From: David Shah Date: Mon, 18 Nov 2019 21:34:32 +0000 Subject: timing: Fix critical path walking for ECP5 Signed-off-by: David Shah --- common/timing.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'common') diff --git a/common/timing.cc b/common/timing.cc index 37600c8c..4e84fffe 100644 --- a/common/timing.cc +++ b/common/timing.cc @@ -434,8 +434,7 @@ struct Timing 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) && -- cgit v1.2.3