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

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
myrtle 2026-02-25 14:21:25 +01:00 committed by GitHub
parent 0d3a578539
commit 2b4deb4313
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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;