From 79ebc3469b4833733dee308ac49a7ed53d986481 Mon Sep 17 00:00:00 2001 From: James Cherry Date: Tue, 24 Feb 2026 16:45:03 -0800 Subject: [PATCH] report_path -path_group w/-default resolves openroad issue #9439 Signed-off-by: James Cherry --- search/PathGroup.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/search/PathGroup.cc b/search/PathGroup.cc index 6ac127f0..ca842db5 100644 --- a/search/PathGroup.cc +++ b/search/PathGroup.cc @@ -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);