Skip to content

Commit 8fec70e

Browse files
authored
Merge pull request #7850 from osamahammad21/drt-skip-abutted-pins
DRT: skip connectedByAbuttment nets
2 parents 35e48b6 + ee6d528 commit 8fec70e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/drt/src/io/io_parser_helper.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -952,6 +952,9 @@ void io::Parser::initRPin()
952952
void io::Parser::initRPin_rpin()
953953
{
954954
for (auto& net : getBlock()->getNets()) {
955+
if (net->isConnectedByAbutment()) {
956+
continue;
957+
}
955958
// instTerm
956959
for (auto& instTerm : net->getInstTerms()) {
957960
auto inst = instTerm->getInst();

0 commit comments

Comments
 (0)