From 7905df89f350931f9fdc1e28ea322029392ee625 Mon Sep 17 00:00:00 2001 From: "Emil J. Tywoniak" Date: Wed, 8 Apr 2026 11:39:24 +0200 Subject: [PATCH] rtlil: fix cloneInto in signorm --- kernel/rtlil.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kernel/rtlil.cc b/kernel/rtlil.cc index 6d7d41799..5a3a5fb60 100644 --- a/kernel/rtlil.cc +++ b/kernel/rtlil.cc @@ -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)