aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorMiodrag Milanovic <mmicko@gmail.com>2020-01-01 16:13:14 +0100
committerMiodrag Milanovic <mmicko@gmail.com>2020-01-01 16:13:14 +0100
commite0c879684f510ae6fd1169c90d137e660c88e6be (patch)
tree85064846269fd008f2b0076f95501952fa39c4cd /passes
parent22fe931c861aa3f557327baf9d12ec57006308d9 (diff)
downloadyosys-e0c879684f510ae6fd1169c90d137e660c88e6be.tar.gz
yosys-e0c879684f510ae6fd1169c90d137e660c88e6be.tar.bz2
yosys-e0c879684f510ae6fd1169c90d137e660c88e6be.zip
take skip wire bits into account
Diffstat (limited to 'passes')
-rw-r--r--passes/techmap/iopadmap.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/passes/techmap/iopadmap.cc b/passes/techmap/iopadmap.cc
index 47da98b06..531ac2b99 100644
--- a/passes/techmap/iopadmap.cc
+++ b/passes/techmap/iopadmap.cc
@@ -234,6 +234,9 @@ struct IopadmapPass : public Pass {
SigBit wire_bit(wire, i);
Cell *tbuf_cell = nullptr;
+ if (skip_wire_bits.count(wire_bit))
+ continue;
+
if (tbuf_bits.count(wire_bit))
tbuf_cell = tbuf_bits.at(wire_bit);