Fix valgrind uninitialized bits.

This commit is contained in:
Wilson Snyder 2012-07-19 22:26:15 -04:00
parent b7d1c34aa6
commit 67409af38d
2 changed files with 2 additions and 2 deletions

View File

@ -548,7 +548,7 @@ struct VNumRange {
return false;
}
//
VNumRange() : m_msb(0), m_lsb(0), m_ranged(false), m_littleEndian(false) {}
VNumRange() : m_msb(0), m_lsb(0), mu_flags(0) {}
~VNumRange() {}
// MEMBERS
void init(int msb, int lsb, bool littleEndian) {

View File

@ -18,7 +18,7 @@ execute (
# Read the input .v file and do any CHECK_COVER requests
inline_checks();
file_grep ($Self->{stats}, qr/Coverage, Toggle points joined\s+(\d+)/i, 23)
file_grep ($Self->{stats}, qr/Coverage, Toggle points joined\s+(\d+)/i, 24)
if $Self->{vlt};
ok(1);