Merge pull request #180 from openroadie/master

Latest OpenSTA
This commit is contained in:
Harsh Vardhan 2023-07-10 08:45:47 -07:00 committed by GitHub
commit 7507ce1c51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -95,7 +95,8 @@ Network::findPortsMatching(const Cell *cell,
else {
// bus[0]
Port *port_bit = findBusBit(port, from);
matches.push_back(port_bit);
if (port_bit != nullptr)
matches.push_back(port_bit);
}
}
}