Skip to content

Commit 593a4a6

Browse files
committed
Added dbNet::checkSanityModNetConsistency()
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent f2b13df commit 593a4a6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/odb/src/db/dbNet.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2356,11 +2356,14 @@ void dbNet::setJumpers(bool has_jumpers)
23562356

23572357
void dbNet::checkSanity() const
23582358
{
2359+
// Check net itself
23592360
std::vector<std::string> drvr_info_list;
23602361
dbUtil::findBTermDrivers(this, drvr_info_list);
23612362
dbUtil::findITermDrivers(this, drvr_info_list);
2362-
23632363
dbUtil::checkNetSanity(this, drvr_info_list);
2364+
2365+
// Check the consistency with the related dbModNet
2366+
checkSanityModNetConsistency();
23642367
}
23652368

23662369
dbModInst* dbNet::findMainParentModInst() const

0 commit comments

Comments
 (0)