Fix minor output spacing issues.

This commit is contained in:
Wilson Snyder 2019-10-29 22:57:25 -04:00
parent 974bf1d643
commit 40bdd85a07
5 changed files with 22 additions and 22 deletions

View File

@ -1,3 +1,4 @@
\.clang-format
\.clang-tidy
\.git/
\.git$

View File

@ -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");

View File

@ -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}) {