summaryrefslogtreecommitdiff
path: root/kernel/modwalker.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/modwalker.h')
-rw-r--r--kernel/modwalker.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/kernel/modwalker.h b/kernel/modwalker.h
index 6c3da5dd..efd97379 100644
--- a/kernel/modwalker.h
+++ b/kernel/modwalker.h
@@ -88,12 +88,12 @@ struct ModWalker
void add_cell(RTLIL::Cell *cell)
{
if (ct.cell_known(cell->type)) {
- for (auto &conn : cell->connections)
+ for (auto &conn : cell->connections_)
add_cell_port(cell, conn.first, sigmap(conn.second),
ct.cell_output(cell->type, conn.first),
ct.cell_input(cell->type, conn.first));
} else {
- for (auto &conn : cell->connections)
+ for (auto &conn : cell->connections_)
add_cell_port(cell, conn.first, sigmap(conn.second), true, true);
}
}