Skip to content

Commit e514c5f

Browse files
committed
Fixed build issue
Signed-off-by: Jaehyun Kim <[email protected]>
1 parent 97fb8f2 commit e514c5f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/dbSta/src/dbNetwork.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,17 +140,17 @@ PinInfo getPinInfo(const dbNetwork* network, const Pin* pin)
140140
if (iterm) {
141141
info.id = iterm->getId();
142142
info.type_name = iterm->getTypeName();
143-
info.valid = iterm->isValid();
143+
info.valid = dbITerm::isValid(iterm, network->block());
144144
info.addr = static_cast<void*>(iterm);
145145
} else if (bterm) {
146146
info.id = bterm->getId();
147147
info.type_name = bterm->getTypeName();
148-
info.valid = bterm->isValid();
148+
info.valid = dbBTerm::isValid(bterm, network->block());
149149
info.addr = static_cast<void*>(bterm);
150150
} else if (moditerm) {
151151
info.id = moditerm->getId();
152152
info.type_name = moditerm->getTypeName();
153-
info.valid = moditerm->isValid();
153+
info.valid = dbModITerm::isValid(moditerm, network->block());
154154
info.addr = static_cast<void*>(moditerm);
155155
}
156156

0 commit comments

Comments
 (0)