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

Merge pull request #4951 from YosysHQ/emil/fix-dft_tag-autoNot

dft_tag: fix autoNot not notting
This commit is contained in:
Emil J 2025-03-20 21:16:34 +01:00 committed by GitHub
commit 9893ed59b7
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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;
}