mirror of
https://github.com/YosysHQ/yosys
synced 2025-09-19 07:54:51 +00:00
More cleanups related to RTLIL::IdString usage
This commit is contained in:
parent
14412e6c95
commit
b9bd22b8c8
33 changed files with 237 additions and 261 deletions
|
@ -1160,19 +1160,19 @@ struct SatPass : public Pass {
|
|||
if (set_def_inputs) {
|
||||
for (auto &it : module->wires_)
|
||||
if (it.second->port_input)
|
||||
sets_def.push_back(it.second->name);
|
||||
sets_def.push_back(it.second->name.str());
|
||||
}
|
||||
|
||||
if (show_inputs) {
|
||||
for (auto &it : module->wires_)
|
||||
if (it.second->port_input)
|
||||
shows.push_back(it.second->name);
|
||||
shows.push_back(it.second->name.str());
|
||||
}
|
||||
|
||||
if (show_outputs) {
|
||||
for (auto &it : module->wires_)
|
||||
if (it.second->port_output)
|
||||
shows.push_back(it.second->name);
|
||||
shows.push_back(it.second->name.str());
|
||||
}
|
||||
|
||||
if (tempinduct)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue