aboutsummaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorKeith Rothman <537074+litghost@users.noreply.github.com>2021-03-23 16:53:42 -0700
committerKeith Rothman <537074+litghost@users.noreply.github.com>2021-03-25 17:20:09 -0700
commit77bc2f9130204e40023411c3fd13b3a3a3aa8a5b (patch)
tree976e407dd05455dab6d425ed3db2cc96e7be4d87 /common
parent5e96740451912cbd68aecdbe58d776831d282cba (diff)
downloadnextpnr-77bc2f9130204e40023411c3fd13b3a3a3aa8a5b.tar.gz
nextpnr-77bc2f9130204e40023411c3fd13b3a3a3aa8a5b.tar.bz2
nextpnr-77bc2f9130204e40023411c3fd13b3a3a3aa8a5b.zip
Add initial handling of local site inverters and constant signals.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to 'common')
-rw-r--r--common/router1.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/common/router1.cc b/common/router1.cc
index 30ebc113..11107a40 100644
--- a/common/router1.cc
+++ b/common/router1.cc
@@ -435,8 +435,9 @@ struct Router1
// TODO: this matches the situation before supporting multiple cell->bel pins, but do we want to keep
// this invariant?
if (phys_idx == 0)
- log_error("No wires found for port %s on destination cell %s.\n",
- ctx->nameOf(net_info->users[user_idx].port), ctx->nameOf(net_info->users[user_idx].cell));
+ log_warning("No wires found for port %s on destination cell %s.\n",
+ ctx->nameOf(net_info->users[user_idx].port),
+ ctx->nameOf(net_info->users[user_idx].cell));
}
src_to_net[src_wire] = net_info;