aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/techmap.cc
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2017-07-21 19:32:31 +0200
committerClifford Wolf <clifford@clifford.at>2017-07-21 19:32:31 +0200
commitb3bc7068d1683cc0ac0b21cacdfb07867a7eeadb (patch)
tree6479759cc374b0306b812f90db1a754ff52f1ec6 /passes/techmap/techmap.cc
parent36cf18ac4c1f96cad795032c3597abf08af6a6d8 (diff)
downloadyosys-b3bc7068d1683cc0ac0b21cacdfb07867a7eeadb.tar.gz
yosys-b3bc7068d1683cc0ac0b21cacdfb07867a7eeadb.tar.bz2
yosys-b3bc7068d1683cc0ac0b21cacdfb07867a7eeadb.zip
Fix handling of empty cell port assignments (i.e. ignore them)
Diffstat (limited to 'passes/techmap/techmap.cc')
-rw-r--r--passes/techmap/techmap.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/passes/techmap/techmap.cc b/passes/techmap/techmap.cc
index e85714b57..ae89453d0 100644
--- a/passes/techmap/techmap.cc
+++ b/passes/techmap/techmap.cc
@@ -247,6 +247,9 @@ struct TechmapWorker
continue;
}
+ if (GetSize(it.second) == 0)
+ continue;
+
RTLIL::Wire *w = tpl->wires_.at(portname);
RTLIL::SigSig c, extra_connect;