report_path -path_group w/-default resolves openroad issue #9439
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
795c190edb
commit
79ebc3469b
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue