aboutsummaryrefslogtreecommitdiffstats
path: root/fpga_interchange/dedicated_interconnect.cc
diff options
context:
space:
mode:
authorgatecat <gatecat@ds0.me>2021-07-12 11:40:23 +0100
committergatecat <gatecat@ds0.me>2021-07-12 11:40:23 +0100
commit8604b030088d9b0895a9384b21e37a97741a1ba2 (patch)
tree5c8dff1420bf5ac531afe24756c8ae371b9cd043 /fpga_interchange/dedicated_interconnect.cc
parent96a588505179c1d76a15119a6c8f719910f020cc (diff)
downloadnextpnr-8604b030088d9b0895a9384b21e37a97741a1ba2.tar.gz
nextpnr-8604b030088d9b0895a9384b21e37a97741a1ba2.tar.bz2
nextpnr-8604b030088d9b0895a9384b21e37a97741a1ba2.zip
interchange: Debug IO port validity check failures
Signed-off-by: gatecat <gatecat@ds0.me>
Diffstat (limited to 'fpga_interchange/dedicated_interconnect.cc')
-rw-r--r--fpga_interchange/dedicated_interconnect.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga_interchange/dedicated_interconnect.cc b/fpga_interchange/dedicated_interconnect.cc
index 7658d579..5f89e15b 100644
--- a/fpga_interchange/dedicated_interconnect.cc
+++ b/fpga_interchange/dedicated_interconnect.cc
@@ -457,12 +457,12 @@ void DedicatedInterconnect::explain_bel_status(BelId bel, const CellInfo *cell)
// Only check sink BELs.
if (net->driver.cell == cell && net->driver.port == port_name) {
if (!is_driver_on_net_valid(bel, cell, port_name, net)) {
- log_info("Driver %s/%s is not valid on net '%s'", cell->name.c_str(ctx), port_name.c_str(ctx),
+ log_info("Driver %s/%s is not valid on net '%s'\n", cell->name.c_str(ctx), port_name.c_str(ctx),
net->name.c_str(ctx));
}
} else {
if (!is_sink_on_net_valid(bel, cell, port_name, net)) {
- log_info("Sink %s/%s is not valid on net '%s'", cell->name.c_str(ctx), port_name.c_str(ctx),
+ log_info("Sink %s/%s is not valid on net '%s'\n", cell->name.c_str(ctx), port_name.c_str(ctx),
net->name.c_str(ctx));
}
}