diff options
Diffstat (limited to 'nexus/global.cc')
-rw-r--r-- | nexus/global.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nexus/global.cc b/nexus/global.cc index 37629f64..0792715d 100644 --- a/nexus/global.cc +++ b/nexus/global.cc @@ -193,7 +193,7 @@ struct NexusGlobalRouter CellInfo *drv = ni->driver.cell; if (drv == nullptr) continue; - if (drv->type == id_DCC || drv->type == id_DCS) { + if (drv->type.in(id_DCC, id_DCS)) { route_clk_net(ni); continue; } |