From e0fe52360621a51dc07f005dbe461db21c07f276 Mon Sep 17 00:00:00 2001 From: David Shah Date: Mon, 12 Nov 2018 11:23:31 +0000 Subject: Fix router1 check for ECP5 Signed-off-by: David Shah --- common/router1.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'common') diff --git a/common/router1.cc b/common/router1.cc index 41818800..7eb02370 100644 --- a/common/router1.cc +++ b/common/router1.cc @@ -770,6 +770,11 @@ bool Context::checkRoutedDesign() const for (auto &net_it : ctx->nets) { NetInfo *net_info = net_it.second.get(); +#ifdef ARCH_ECP5 + if (net_info->is_global) + continue; +#endif + if (ctx->debug) log("checking net %s\n", net_info->name.c_str(ctx)); -- cgit v1.2.3