Internals: Fix whitespace.

This commit is contained in:
Wilson Snyder 2018-10-02 06:31:11 -04:00
parent 72f5d39ace
commit f8ae08c0c2
2 changed files with 7 additions and 7 deletions

View File

@ -227,7 +227,7 @@ void VerilatedVcd::makeNameMap() {
for (vluint32_t ent = 0; ent< m_callbacks.size(); ent++) {
VerilatedVcdCallInfo* cip = m_callbacks[ent];
cip->m_code = m_nextCode;
(cip->m_initcb) (this, cip->m_userthis, cip->m_code);
(cip->m_initcb)(this, cip->m_userthis, cip->m_code);
}
// Though not speced, it's illegal to generate a vcd with signals

View File

@ -130,7 +130,7 @@ if ($#opt_tests<0) {
foreach my $dir (@Test_Dirs) {
my @stats = stat($dir); # Uniquify by inode, so different paths to same place get combined
next if !$stats[1] || $uniq{$stats[1]}++;
push @opt_tests, sort(glob ("${dir}/t_*.pl"));
push @opt_tests, sort(glob("${dir}/t_*.pl"));
}
}
if ($#opt_tests>=2 && $opt_jobs>=2) {
@ -1255,7 +1255,7 @@ sub _make_main {
$fh->print(" topp->trace(tfp, 99);\n");
$fh->print(" tfp->open(\"".$self->trace_filename."\");\n");
if ($self->{trace} && !$self->sc) {
$fh->print(" if (tfp) tfp->dump (main_time);\n");
$fh->print(" if (tfp) tfp->dump(main_time);\n");
}
$fh->print("#endif\n");
}
@ -1308,12 +1308,12 @@ sub _make_main {
if ($self->{coverage}) {
$fh->print("#if VM_COVERAGE\n");
$fh->print(" VerilatedCov::write(\"",$self->{coverage_filename},"\");\n");
$fh->print("#endif //VM_COVERAGE\n");
$fh->print("#endif // VM_COVERAGE\n");
}
if ($self->{trace}) {
$fh->print("#if VM_TRACE\n");
$fh->print(" if (tfp) tfp->close();\n");
$fh->print("#endif //VM_TRACE\n");
$fh->print("#endif // VM_TRACE\n");
}
$fh->print("\n");
@ -1344,8 +1344,8 @@ sub _print_advance_time {
print $fh " ${set}eval();\n";
if ($self->{trace} && !$self->sc) {
$fh->print("#if VM_TRACE\n");
$fh->print(" if (tfp) tfp->dump (main_time);\n");
$fh->print("#endif //VM_TRACE\n");
$fh->print(" if (tfp) tfp->dump(main_time);\n");
$fh->print("#endif // VM_TRACE\n");
}
}
print $fh " main_time += ${time};\n";