3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-06-06 06:03:23 +00:00

Replaced RTLIL::SigSpec::operator!=() with inline version

This commit is contained in:
Clifford Wolf 2014-07-23 15:35:09 +02:00
parent 5b51b67297
commit 85db102e13
2 changed files with 1 additions and 8 deletions

View file

@ -1929,13 +1929,6 @@ bool RTLIL::SigSpec::operator ==(const RTLIL::SigSpec &other) const
return true;
}
bool RTLIL::SigSpec::operator !=(const RTLIL::SigSpec &other) const
{
if (*this == other)
return false;
return true;
}
bool RTLIL::SigSpec::is_fully_const() const
{
pack();