mirror of https://github.com/YosysHQ/yosys.git
rtlil: fix cloneInto in signorm
This commit is contained in:
parent
8831f3245d
commit
8ab4e03244
|
|
@ -2619,7 +2619,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…
Reference in New Issue