3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-07 09:55:20 +00:00

Merge pull request from georgerennie/george/btor_undriven_wires

write_btor: don't emit undriven bits multiple times
This commit is contained in:
Jannis Harder 2024-11-11 16:17:25 +01:00 committed by GitHub
commit 261b44718d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1077,6 +1077,7 @@ struct BtorWorker
btorf("%d input %d\n", nid, sid);
ywmap_input(s);
nid_width[nid] = GetSize(s);
add_nid_sig(nid, s);
for (int j = 0; j < GetSize(s); j++)
nidbits.push_back(make_pair(nid, j));