mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-28 19:35:53 +00:00
fix proc, reduce warnings
This commit is contained in:
parent
1be8f8023a
commit
66c629374c
3 changed files with 3 additions and 3 deletions
|
@ -343,7 +343,7 @@ private:
|
|||
//recurse to GLIFT model the child module. However, we need to augment the ports list
|
||||
//with taint signals and connect the new ports to the corresponding taint signals.
|
||||
RTLIL::Module *cell_module_def = module->design->module(cell->type);
|
||||
auto orig_ports = cell->connections();
|
||||
auto orig_ports = cell->connections().as_dict();
|
||||
log("Adding cell %s\n", cell_module_def->name.c_str());
|
||||
for (auto &&it : orig_ports) {
|
||||
RTLIL::SigSpec port = it.second;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue