forked from github/verilator
Fix minor output spacing issues.
This commit is contained in:
parent
974bf1d643
commit
40bdd85a07
@ -1,3 +1,4 @@
|
||||
\.clang-format
|
||||
\.clang-tidy
|
||||
\.git/
|
||||
\.git$
|
||||
|
@ -2892,7 +2892,8 @@ class EmitCTrace : EmitCStmts {
|
||||
puts(topClassName()+"* t = ("+topClassName()+"*)userthis;\n");
|
||||
puts(EmitCBaseVisitor::symClassVar()+" = t->__VlSymsp; // Setup global symbol table\n");
|
||||
puts("if (!Verilated::calcUnusedSigs()) {\n");
|
||||
puts( "VL_FATAL_MT(__FILE__,__LINE__,__FILE__,\"Turning on wave traces requires Verilated::traceEverOn(true) call before time 0.\");\n");
|
||||
puts( "VL_FATAL_MT(__FILE__, __LINE__, __FILE__,\n");
|
||||
puts( " \"Turning on wave traces requires Verilated::traceEverOn(true) call before time 0.\");\n");
|
||||
puts("}\n");
|
||||
puts("vcdp->scopeEscape(' ');\n");
|
||||
puts("t->"+protect("traceInitThis")+"(vlSymsp, vcdp, code);\n");
|
||||
|
@ -1580,9 +1580,7 @@ sub _make_main {
|
||||
print $fh "$VM_PREFIX* topp;\n";
|
||||
if (!$self->sc) {
|
||||
print $fh "vluint64_t main_time = false;\n";
|
||||
print $fh "double sc_time_stamp() {\n";
|
||||
print $fh " return main_time;\n";
|
||||
print $fh "}\n";
|
||||
print $fh "double sc_time_stamp() { return main_time; }\n";
|
||||
}
|
||||
|
||||
if ($self->{savable}) {
|
||||
|
Loading…
Reference in New Issue
Block a user