aboutsummaryrefslogtreecommitdiffstats
path: root/common/timing.cc
diff options
context:
space:
mode:
authorDavid Shah <davey1576@gmail.com>2019-01-27 17:13:46 +0000
committerGitHub <noreply@github.com>2019-01-27 17:13:46 +0000
commit6cc1bfcb37199e0988d0f06ce34071b409ab8019 (patch)
tree158833005b2aa99c370b27253bbbf6732b92f369 /common/timing.cc
parentb8bff6b8b595c1991e9a9e02528999abc03a3543 (diff)
parentcc53c312de168a2b44aa5ec5da436f2caebdc83e (diff)
downloadnextpnr-6cc1bfcb37199e0988d0f06ce34071b409ab8019.tar.gz
nextpnr-6cc1bfcb37199e0988d0f06ce34071b409ab8019.tar.bz2
nextpnr-6cc1bfcb37199e0988d0f06ce34071b409ab8019.zip
Merge pull request #217 from YosysHQ/timingfixes
[timing] Path related fixes
Diffstat (limited to 'common/timing.cc')
-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);