aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2020-01-01 17:46:45 +0100
committerGitHub <noreply@github.com>2020-01-01 17:46:45 +0100
commit6620b4e94e106340ca10d5602c32bfd0313ff46e (patch)
treec7fa99ce8350542599ad0131957e44592557e255 /passes
parent22fe931c861aa3f557327baf9d12ec57006308d9 (diff)
parenta1344ec06ead35a3b7933ee93b5757eeff2e5d4a (diff)
downloadyosys-6620b4e94e106340ca10d5602c32bfd0313ff46e.tar.gz
yosys-6620b4e94e106340ca10d5602c32bfd0313ff46e.tar.bz2
yosys-6620b4e94e106340ca10d5602c32bfd0313ff46e.zip
Merge pull request #1605 from YosysHQ/iopad_fix
iopad mapping should take care of existing io buffers
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);