mirror of https://github.com/YosysHQ/yosys.git
Fixed SigPool::del() method
This commit is contained in:
parent
ff965424c2
commit
117489f95a
|
@ -68,7 +68,7 @@ struct SigPool
|
|||
void del(const SigPool &other)
|
||||
{
|
||||
for (auto &bit : other.bits)
|
||||
bits.insert(bit);
|
||||
bits.erase(bit);
|
||||
}
|
||||
|
||||
void expand(RTLIL::SigSpec from, RTLIL::SigSpec to)
|
||||
|
|
Loading…
Reference in New Issue