forked from github/verilator
Fix VCD open with empty filename, #2198.
This commit is contained in:
parent
75ebe7a4be
commit
08a51e3e09
2
Changes
2
Changes
@ -13,6 +13,8 @@ The contributors that suggested a given feature are shown in []. Thanks!
|
|||||||
|
|
||||||
**** Fix parameter type redeclaring a type, #2195. [hdzhangdoc]
|
**** Fix parameter type redeclaring a type, #2195. [hdzhangdoc]
|
||||||
|
|
||||||
|
**** Fix VCD open with empty filename, #2198. [Julius Baxter]
|
||||||
|
|
||||||
|
|
||||||
* Verilator 4.030 2020-03-08
|
* Verilator 4.030 2020-03-08
|
||||||
|
|
||||||
|
@ -156,10 +156,10 @@ VerilatedVcd::VerilatedVcd(VerilatedVcdFile* filep)
|
|||||||
|
|
||||||
void VerilatedVcd::open(const char* filename) {
|
void VerilatedVcd::open(const char* filename) {
|
||||||
m_assertOne.check();
|
m_assertOne.check();
|
||||||
if (isOpen() || !filename || !*filename) return;
|
if (isOpen()) return;
|
||||||
|
|
||||||
// Set member variables
|
// Set member variables
|
||||||
m_filename = filename;
|
m_filename = filename; // "" is ok, as someone may overload open
|
||||||
VerilatedVcdSingleton::pushVcd(this);
|
VerilatedVcdSingleton::pushVcd(this);
|
||||||
|
|
||||||
// SPDIFF_OFF
|
// SPDIFF_OFF
|
||||||
|
Loading…
Reference in New Issue
Block a user