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

Fix infinite recursion

This commit is contained in:
Eddie Hung 2019-09-27 17:45:49 -07:00
parent fe722b737c
commit dc154c39a8

View file

@ -314,7 +314,7 @@ struct XAigerWriter
SigBit d = cell->getPort(abc_flop_d);
SigBit I = sigmap(d);
if (I != d)
alias_map[I] = d;
alias_map[d] = I;
unused_bits.erase(d);
auto abc_flop_q = r.first->second.q_port;