diff --git a/nodist/install_test b/nodist/install_test index 07f5fa6ad..77bf18cef 100755 --- a/nodist/install_test +++ b/nodist/install_test @@ -100,7 +100,7 @@ sub write_verilog { my $fh = IO::File->new(">$dir/foo.cpp"); $fh->print('#include "Vfoo.h"' ,"\n"); $fh->print('unsigned int main_time = 0;' ,"\n"); - $fh->print('double sc_time_stamp () {' ,"\n"); + $fh->print('double sc_time_stamp() {' ,"\n"); $fh->print(' return main_time;' ,"\n"); $fh->print('}' ,"\n"); $fh->print('int main() {' ,"\n"); diff --git a/src/V3CCtors.cpp b/src/V3CCtors.cpp index 739f82144..5933eae6c 100644 --- a/src/V3CCtors.cpp +++ b/src/V3CCtors.cpp @@ -160,7 +160,7 @@ void V3CCtors::cctorsAll() { if (v3Global.opt.coverage()) { V3CCtorsVisitor configure_coverage (modp, "_configure_coverage", EmitCBaseVisitor::symClassVar()+ ", bool first", "vlSymsp, first", - "if (0 && vlSymsp && first) {} // Prevent unused\n"); + "if (0 && vlSymsp && first) {} // Prevent unused\n"); for (AstNode* np = modp->stmtsp(); np; np = np->nextp()) { if (AstCoverDecl* coverp = np->castCoverDecl()) { AstNode* backp = coverp->backp(); diff --git a/src/V3EmitC.cpp b/src/V3EmitC.cpp index 7fd7b8c5d..0026cf156 100644 --- a/src/V3EmitC.cpp +++ b/src/V3EmitC.cpp @@ -371,11 +371,11 @@ public: } virtual void visit(AstFFlush* nodep) { if (!nodep->filep()) { - puts("fflush (stdout);\n"); + puts("fflush(stdout);\n"); } else { puts("if ("); nodep->filep()->iterateAndNext(*this); - puts(") { fflush (VL_CVT_I_FP("); + puts(") { fflush(VL_CVT_I_FP("); nodep->filep()->iterateAndNext(*this); puts(")); }\n"); } @@ -1715,7 +1715,7 @@ void EmitCImp::emitCellCtors(AstNodeModule* modp) { } for (AstNode* nodep=modp->stmtsp(); nodep; nodep = nodep->nextp()) { if (AstCell* cellp=nodep->castCell()) { - puts("VL_CELL ("+cellp->name()+", "+modClassName(cellp->modp())+");\n"); + puts("VL_CELL("+cellp->name()+", "+modClassName(cellp->modp())+");\n"); } } } diff --git a/test_regress/driver.pl b/test_regress/driver.pl index fa9052dba..ce7bc815b 100755 --- a/test_regress/driver.pl +++ b/test_regress/driver.pl @@ -1173,7 +1173,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 "double sc_time_stamp() {\n"; print $fh " return main_time;\n"; print $fh "}\n"; } @@ -1205,7 +1205,7 @@ sub _make_main { print $fh "int sc_main(int argc, char **argv) {\n"; print $fh " sc_signal fastclk;\n" if $self->{inputs}{fastclk}; print $fh " sc_signal clk;\n" if $self->{inputs}{clk}; - print $fh " sc_time sim_time ($self->{sim_time}, SC_NS);\n"; + print $fh " sc_time sim_time($self->{sim_time}, SC_NS);\n"; } else { print $fh "int main(int argc, char **argv, char **env) {\n"; print $fh " double sim_time = $self->{sim_time};\n"; @@ -1214,7 +1214,7 @@ sub _make_main { print $fh " Verilated::debug(".($self->{verilated_debug}?1:0).");\n"; print $fh " srand48(5);\n"; # Ensure determinism print $fh " Verilated::randReset(".$self->{verilated_randReset}.");\n" if defined $self->{verilated_randReset}; - print $fh " topp = new $VM_PREFIX (\"top\");\n"; + print $fh " topp = new $VM_PREFIX(\"top\");\n"; my $set; if ($self->sc) { print $fh " topp->fastclk(fastclk);\n" if $self->{inputs}{fastclk}; @@ -1231,8 +1231,8 @@ sub _make_main { $fh->print(" Verilated::traceEverOn(true);\n"); $fh->print(" VerilatedVcdC* tfp = new VerilatedVcdC;\n") if !$self->sc; $fh->print(" VerilatedVcdSc* tfp = new VerilatedVcdSc;\n") if $self->sc; - $fh->print(" topp->trace (tfp, 99);\n"); - $fh->print(" tfp->open (\"$self->{obj_dir}/simx.vcd\");\n"); + $fh->print(" topp->trace(tfp, 99);\n"); + $fh->print(" tfp->open(\"$self->{obj_dir}/simx.vcd\");\n"); if ($self->{trace} && !$self->sc) { $fh->print(" if (tfp) tfp->dump (main_time);\n"); } @@ -1516,8 +1516,8 @@ sub verilator_version { sub files_identical { my $fn1 = shift; my $fn2 = shift; - my $f1 = IO::File->new ("<$fn1"); if (!$f1) { warn "%Error: $! $fn1\n"; return 0; } - my $f2 = IO::File->new ("<$fn2"); if (!$f2) { warn "%Error: $! $fn2\n"; return 0; } + my $f1 = IO::File->new("<$fn1"); if (!$f1) { warn "%Error: $! $fn1\n"; return 0; } + my $f2 = IO::File->new("<$fn2"); if (!$f2) { warn "%Error: $! $fn2\n"; return 0; } my @l1 = $f1->getlines(); my @l2 = $f2->getlines(); my $nl = $#l1; $nl = $#l2 if ($#l2 > $nl);