Skip to content

Commit

Permalink
Reformatted dbNetwork
Browse files Browse the repository at this point in the history
Signed-off-by: andyfox-rushc <[email protected]>
  • Loading branch information
andyfox-rushc committed Nov 8, 2024
1 parent b959bb8 commit 49cc94d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/dbSta/src/dbNetwork.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3010,9 +3010,10 @@ void dbNetwork::hierarchicalConnect(dbITerm* source_pin,
dbModBTerm* mod_bterm
= dbModBTerm::create(cur_module, connection_name_o.c_str());
if (!source_db_mod_net) {
source_db_mod_net = dbModNet::create(source_db_module, connection_name);
source_pin->connect(source_db_mod_net);
source_db_mod_net
= dbModNet::create(source_db_module, connection_name_o.c_str());
}
source_pin->connect(source_db_mod_net);
mod_bterm->connect(source_db_mod_net);
mod_bterm->setIoType(dbIoType::OUTPUT);
mod_bterm->setSigType(dbSigType::SIGNAL);
Expand Down

0 comments on commit 49cc94d

Please sign in to comment.