Fixed SigPool::del() method

This commit is contained in:
Clifford Wolf 2013-08-06 15:04:24 +02:00
parent ff965424c2
commit 117489f95a

View file

@ -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)