3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-04 16:44:08 +00:00

dft_tag: fix autoNot not notting

This commit is contained in:
Emil J. Tywoniak 2025-03-19 18:28:50 +01:00
parent 0c689091e2
commit 199702a392

View file

@ -883,7 +883,7 @@ struct DftTagWorker {
{
if (sig_a.is_fully_const()) {
auto const_val = sig_a.as_const();
for (auto bit : const_val)
for (State& bit : const_val.bits())
bit = bit == State::S0 ? State::S1 : bit == State::S1 ? State::S0 : bit;
return const_val;
}