aboutsummaryrefslogtreecommitdiffstats
path: root/nexus/pack.cc
diff options
context:
space:
mode:
Diffstat (limited to 'nexus/pack.cc')
-rw-r--r--nexus/pack.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/nexus/pack.cc b/nexus/pack.cc
index bff50d89..66d897a8 100644
--- a/nexus/pack.cc
+++ b/nexus/pack.cc
@@ -883,7 +883,8 @@ struct NexusPacker
for (size_t i = 0; i < std::min<size_t>(clk_fanout.size(), available_globals); i++) {
NetInfo *net = ctx->nets.at(clk_fanout.at(i).second).get();
log_info(" promoting clock net '%s'\n", ctx->nameOf(net));
- insert_buffer(net, id_DCC, "glb_clk", id_CLKI, id_CLKO, [&](const PortRef &port) { return port.cell->type != id_DCC; });
+ insert_buffer(net, id_DCC, "glb_clk", id_CLKI, id_CLKO,
+ [&](const PortRef &port) { return port.cell->type != id_DCC; });
}
}