mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-09-08 06:07:17 +02:00
timing: Fix critical path report with async resets (#1648)
Signed-off-by: gatecat <[email protected]>
This commit is contained in:
@@ -880,7 +880,7 @@ std::vector<PortRef> TimingAnalyser::walk_crit_path(domain_id_t domain_pair, Cel
|
||||
} else {
|
||||
cursor = ports.at(cursor).arrival.at(dp.key.launch).bwd_min;
|
||||
}
|
||||
is_startpoint = portClass == TMG_REGISTER_OUTPUT || portClass == TMG_STARTPOINT;
|
||||
is_startpoint = portClass == TMG_STARTPOINT;
|
||||
} while (!is_startpoint);
|
||||
|
||||
return crit_path_rev;
|
||||
|
||||
Reference in New Issue
Block a user