diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 12:44:06 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-01-02 12:44:06 -0800 |
commit | b454735bea6727f346fdbbc28f261b40d91c61ba (patch) | |
tree | 6e82d90b00f0bf65ae340d97d2df4fd1558bb2b4 /passes/techmap/iopadmap.cc | |
parent | 345e98f87105316da9797e01bdbdd3932269cfdf (diff) | |
parent | ef6548203cca239a98b00ea652a92fe3e20f97d7 (diff) | |
download | yosys-b454735bea6727f346fdbbc28f261b40d91c61ba.tar.gz yosys-b454735bea6727f346fdbbc28f261b40d91c61ba.tar.bz2 yosys-b454735bea6727f346fdbbc28f261b40d91c61ba.zip |
Merge remote-tracking branch 'origin/master' into xaig_dff
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); |