Fixed SigPool::del() method

This commit is contained in:
Clifford Wolf 2013-08-06 15:04:24 +02:00
parent ff965424c2
commit 117489f95a
1 changed files with 1 additions and 1 deletions

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)