timing: Fix critical path report with async resets (#1648)

Signed-off-by: gatecat <[email protected]>
This commit is contained in:
myrtle
2026-02-25 14:21:25 +01:00
committed by GitHub
parent 0d3a578539
commit 2b4deb4313
+1 -1
View File
@@ -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;