Skip to content

Commit bfdcfb7

Browse files
authored
Merge pull request The-OpenROAD-Project#6805 from mikesinouye/rsz
rsz: Fix a crash in row balancing for PDKs with macros w/out a SITE in the LEF.
2 parents 5098fed + 493bb42 commit bfdcfb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/rsz/src/Resizer.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -608,7 +608,7 @@ void Resizer::balanceRowUsage()
608608
auto master = inst->getMaster();
609609
auto site = master->getSite();
610610
// Ignore multi-height cells for now
611-
if (site->hasRowPattern()) {
611+
if (site && site->hasRowPattern()) {
612612
continue;
613613
}
614614

0 commit comments

Comments
 (0)