mirror of
https://github.com/YosysHQ/yosys
synced 2026-05-25 03:16:22 +00:00
rtlil: fix cloneInto in signorm
This commit is contained in:
parent
754709aa01
commit
7905df89f3
1 changed files with 1 additions and 1 deletions
|
|
@ -2725,7 +2725,7 @@ void RTLIL::Module::cloneInto(RTLIL::Module *new_mod) const
|
|||
new_mod->avail_parameters = avail_parameters;
|
||||
new_mod->parameter_default_values = parameter_default_values;
|
||||
|
||||
for (auto &conn : connections_)
|
||||
for (auto &conn : connections())
|
||||
new_mod->connect(conn);
|
||||
|
||||
for (auto &attr : attributes)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue