diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:14:12 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 15:14:12 -0800 |
commit | 5f970863023881caaa3a64120a0f767386d35d62 (patch) | |
tree | b373796abb0a02a4935062fe1abcc86cf3c7ff24 /passes/techmap/iopadmap.cc | |
parent | d597e3e979d534d81c9c666d4b8eb95ed1bb4aa6 (diff) | |
parent | f8d5920a7e61f78873b7bf49dd7e8f3a83f7adf3 (diff) | |
download | yosys-5f970863023881caaa3a64120a0f767386d35d62.tar.gz yosys-5f970863023881caaa3a64120a0f767386d35d62.tar.bz2 yosys-5f970863023881caaa3a64120a0f767386d35d62.zip |
Merge remote-tracking branch 'origin/master' into eddie/abc9_refactor
Diffstat (limited to 'passes/techmap/iopadmap.cc')
-rw-r--r-- | passes/techmap/iopadmap.cc | 3 |
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); |