3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 18:05:24 +00:00

Add non-input bits driven by unrecognised cells as ci_bits

This commit is contained in:
Eddie Hung 2019-04-10 18:06:33 -07:00
parent 1a49cf29d8
commit 2217d59e29

View file

@ -229,7 +229,7 @@ struct XAigerWriter
}
if (is_output) {
SigBit O = sigmap(b);
if (!input_bits.count(O) && !output_bits.count(O))
if (!input_bits.count(O))
ci_bits.insert(O);
}
}