aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-01-21 11:58:49 +0000
committerDavid Shah <dave@ds0.me>2019-01-27 16:45:37 +0000
commitcc53c312de168a2b44aa5ec5da436f2caebdc83e (patch)
treeddb8df95cf97fd78172e49008a7606f168037038 /common
parent265fa1be16f9f50b371b646fc2cf8802273d9121 (diff)
downloadnextpnr-cc53c312de168a2b44aa5ec5da436f2caebdc83e.tar.gz
nextpnr-cc53c312de168a2b44aa5ec5da436f2caebdc83e.tar.bz2
nextpnr-cc53c312de168a2b44aa5ec5da436f2caebdc83e.zip
timing: Path related fixes
Signed-off-by: David Shah <dave@ds0.me>
Diffstat (limited to 'common')
-rw-r--r--common/timing.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/timing.cc b/common/timing.cc
index b27dd56e..f3cb4306 100644
--- a/common/timing.cc
+++ b/common/timing.cc
@@ -267,8 +267,7 @@ struct Timing
auto net_delay = net_delays ? ctx->getNetinfoRouteDelay(net, usr) : delay_t();
auto usr_arrival = net_arrival + net_delay;
- if (portClass == TMG_REGISTER_INPUT || portClass == TMG_ENDPOINT || portClass == TMG_IGNORE ||
- portClass == TMG_CLOCK_INPUT) {
+ if (portClass == TMG_ENDPOINT || portClass == TMG_IGNORE || portClass == TMG_CLOCK_INPUT) {
// Skip
} else {
auto budget_override = ctx->getBudgetOverride(net, usr, net_delay);