mirror of https://github.com/YosysHQ/nextpnr.git
tried fixing clock router
This commit is contained in:
parent
10765f7516
commit
f24630c02b
|
|
@ -66,6 +66,10 @@ void GateMateImpl::route_clock()
|
|||
auto reserve = [&](WireId wire, NetInfo *net) {
|
||||
if (ctx->debug) {
|
||||
auto wire_name = "(uninitialized)";
|
||||
for (auto pip : ctx->getPipsUphill(wire)) {
|
||||
wire = ctx->getPipSrcWire(pip);
|
||||
break;
|
||||
}
|
||||
if (wire != WireId())
|
||||
wire_name = ctx->nameOfWire(wire);
|
||||
log_info(" reserving wire %s\n", wire_name);
|
||||
|
|
|
|||
Loading…
Reference in New Issue