report_path -path_group w/-default resolves openroad issue #9439

Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
James Cherry 2026-02-24 16:45:03 -08:00
parent 795c190edb
commit 79ebc3469b
1 changed files with 4 additions and 2 deletions

View File

@ -436,8 +436,10 @@ PathGroups::pathGroups(const PathEnd *path_end) const
// GroupPaths have precedence.
else if (!group_paths.empty()) {
for (ExceptionPath *group_path : group_paths) {
if (group_path->isDefault())
path_groups.push_back(path_delay_[mm_index]);
if (group_path->isDefault()) {
if (path_delay_[mm_index])
path_groups.push_back(path_delay_[mm_index]);
}
else {
const char *group_name = group_path->name();
PathGroup *group = findPathGroup(group_name, min_max);