We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 07d7191 + 1fb0ea1 commit fb5747dCopy full SHA for fb5747d
src/rsz/src/CloneMove.cc
@@ -248,6 +248,15 @@ bool CloneMove::doMove(const Path* drvr_path,
248
// hierarchical wiring
249
250
odb::dbITerm* clone_output_iterm = db_network_->flatPin(clone_output_pin);
251
+ if (clone_output_iterm == nullptr) {
252
+ logger_->error(
253
+ RSZ,
254
+ 100,
255
+ "Cannot find output pin of the clone instance. Driver pin: {}, "
256
+ "Clone output pin: {}",
257
+ (drvr_pin) ? network_->pathName(drvr_pin) : "Null",
258
+ (clone_output_pin) ? network_->pathName(clone_output_pin) : "Null");
259
+ }
260
261
// Divide the list of pins in half and connect them to the new net we
262
// created as part of gate cloning. Skip ports connected to the original net
0 commit comments