repeat debug information when net direction changes
some debug info is printed out if an OUTPUT net direction is reversed repeated the same code for an INPUT net
This commit is contained in:
parent
5b6bc7c91b
commit
93ac03af07
|
@ -677,6 +677,17 @@ void ConnectPlugHooks(Cell* cell)
|
||||||
, sinks
|
, sinks
|
||||||
) << endl;
|
) << endl;
|
||||||
net->setDirection( Net::Direction::DirIn );
|
net->setDirection( Net::Direction::DirIn );
|
||||||
|
for ( Occurrence occurrence : HyperNet(Occurrence(net)).getComponentOccurrences() ) {
|
||||||
|
Plug* plug = dynamic_cast<Plug*>( occurrence.getEntity() );
|
||||||
|
if (plug) {
|
||||||
|
cerr << " | " << occurrence.getPath().getCompactString(false)
|
||||||
|
<< "." << plug->getInstance()->getName()
|
||||||
|
<< ":" << plug->getMasterNet()->getName()
|
||||||
|
<< " (" << plug->getMasterNet()->getCell()->getName() << ")" << endl;
|
||||||
|
} else {
|
||||||
|
cerr << " | " << occurrence << endl;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue