diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-12-16 14:39:13 -0800 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-12-16 14:39:13 -0800 |
commit | b19fc8839bdbf652d136790fe94cdaa1b520c75b (patch) | |
tree | 17f32f214703985dd5611062bb9b199c91ef86d5 /backends | |
parent | 78c0246d4abbd290289ed55a0008968293119446 (diff) | |
download | yosys-b19fc8839bdbf652d136790fe94cdaa1b520c75b.tar.gz yosys-b19fc8839bdbf652d136790fe94cdaa1b520c75b.tar.bz2 yosys-b19fc8839bdbf652d136790fe94cdaa1b520c75b.zip |
Skip $inout transformation if not a PI
Diffstat (limited to 'backends')
-rw-r--r-- | backends/aiger/xaiger.cc | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/backends/aiger/xaiger.cc b/backends/aiger/xaiger.cc index c080cca4d..6ca24bd7e 100644 --- a/backends/aiger/xaiger.cc +++ b/backends/aiger/xaiger.cc @@ -542,10 +542,12 @@ struct XAigerWriter undriven_bits.erase(bit); } - // For inout ports, or keep-ed wires, then create a new wire with an - // $inout.out suffix, make it a PO driven by the existing inout, and - // inherit existing inout's drivers + // For inout ports, or keep-ed wires, that end up as both a PI and a + // PO, then create a new PO with an $inout.out suffix that is driven + // by the existing inout, and inherit its drivers for (auto bit : inout_bits) { + if (!input_bits.count(bit)) + continue; RTLIL::Wire *wire = bit.wire; RTLIL::IdString wire_name = stringf("$%s$inout.out", wire->name.c_str()); RTLIL::Wire *new_wire = module->wire(wire_name); |