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

Added support for YOSYS_COVER_FILE env variable

This commit is contained in:
Clifford Wolf 2014-07-24 04:16:32 +02:00
parent 1b0d5fc22d
commit 798f713629
2 changed files with 12 additions and 3 deletions

View file

@ -1947,6 +1947,7 @@ bool RTLIL::SigSpec::operator <(const RTLIL::SigSpec &other) const
return chunks_[i] < other.chunks_[i];
}
cover("kernel.rtlil.sigspec.comp_lt.equal");
return false;
}
@ -1978,6 +1979,7 @@ bool RTLIL::SigSpec::operator ==(const RTLIL::SigSpec &other) const
return false;
}
cover("kernel.rtlil.sigspec.comp_eq.equal");
return true;
}