forked from github/verilator
Fix valgrind uninitialized bits.
This commit is contained in:
parent
b7d1c34aa6
commit
67409af38d
@ -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) {
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user