mirror of
https://github.com/YosysHQ/yosys
synced 2025-08-07 19:51:23 +00:00
use the new isPublic() in a few places
This commit is contained in:
parent
4af04be0b7
commit
3238190797
13 changed files with 25 additions and 25 deletions
|
@ -211,7 +211,7 @@ struct SpliceWorker
|
|||
std::vector<Wire*> mod_wires = module->wires();
|
||||
|
||||
for (auto wire : mod_wires)
|
||||
if ((!no_outputs && wire->port_output) || (do_wires && wire->name[0] == '\\')) {
|
||||
if ((!no_outputs && wire->port_output) || (do_wires && wire->name.isPublic())) {
|
||||
if (!design->selected(module, wire))
|
||||
continue;
|
||||
RTLIL::SigSpec sig = sigmap(wire);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue