aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/site_router.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-05-21 11:05:57 +0100
committerGitHub <noreply@github.com>2021-05-21 11:05:57 +0100
commite19d44ee209733d203175602d34eeba953ab910b (patch)
tree2887f9d79fe62cfd39fe17deec8068065aa8ce62 /fpga_interchange/site_router.cc
parent81818fd38c5405005305d1b8354eb75beb8dc18d (diff)
parentff48ad83beabb18c8fdcab41c54dc320326b012e (diff)
downloadnextpnr-e19d44ee209733d203175602d34eeba953ab910b.tar.gz
nextpnr-e19d44ee209733d203175602d34eeba953ab910b.tar.bz2
nextpnr-e19d44ee209733d203175602d34eeba953ab910b.zip
Merge pull request #686 from YosysHQ/gatecat/interchange-macro
interchange: Add macro expansion
Diffstat (limited to 'fpga_interchange/site_router.cc')
-rw-r--r--fpga_interchange/site_router.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/fpga_interchange/site_router.cc b/fpga_interchange/site_router.cc
index f4d65958..69bd366f 100644
--- a/fpga_interchange/site_router.cc
+++ b/fpga_interchange/site_router.cc
@@ -59,8 +59,7 @@ bool check_initial_wires(const Context *ctx, SiteInformation *site_info)
BelId bel = cell->bel;
for (const auto &pin_pair : cell->cell_bel_pins) {
if (!cell->ports.count(pin_pair.first))
- log_error("Cell %s:%s is missing expected port %s\n", ctx->nameOf(cell), cell->type.c_str(ctx),
- pin_pair.first.c_str(ctx));
+ continue;
const PortInfo &port = cell->ports.at(pin_pair.first);
NPNR_ASSERT(port.net != nullptr);