Sta::makeInstanceAfter internal pins may be missing
This commit is contained in:
parent
2ce82bd187
commit
157ef75a10
|
|
@ -3806,7 +3806,9 @@ Sta::makeInstanceAfter(Instance *inst)
|
|||
while (port_iter.hasNext()) {
|
||||
LibertyPort *lib_port = port_iter.next();
|
||||
Pin *pin = network_->findPin(inst, lib_port);
|
||||
connectPinAfter(pin);
|
||||
// Internal pins may not exist.
|
||||
if (pin)
|
||||
connectPinAfter(pin);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue