Avoid tabs in C output.

Signed-off-by: Wilson Snyder <[email protected]>
This commit is contained in:
Maarten De Braekeleer
2019-10-04 21:10:53 -04:00
committed by Wilson Snyder
parent 771a301f66
commit 977a767477
3 changed files with 6 additions and 24 deletions
+1 -1
View File
@@ -325,7 +325,7 @@ void VerilatedVcd::printQuad(vluint64_t n) {
void VerilatedVcd::printTime(vluint64_t timeui) {
// VCD file format specification does not allow non-integers for timestamps
// Dinotrace doesn't mind, but Cadence vvision seems to choke
// Dinotrace doesn't mind, but Cadence Vision seems to choke
if (VL_UNLIKELY(timeui < m_timeLastDump)) {
timeui = m_timeLastDump;
static VL_THREAD_LOCAL bool backTime = false;