diff --git a/src/V3Delayed.cpp b/src/V3Delayed.cpp index 2c30c392e..d249b2637 100644 --- a/src/V3Delayed.cpp +++ b/src/V3Delayed.cpp @@ -474,7 +474,9 @@ private: m_inSuspendableOrFork = true; iterateChildren(nodep); } - void visit(AstCAwait* nodep) override { m_timingDomains.insert(nodep->sensesp()); } + void visit(AstCAwait* nodep) override { + if (nodep->sensesp()) m_timingDomains.insert(nodep->sensesp()); + } void visit(AstFireEvent* nodep) override { UASSERT_OBJ(v3Global.hasEvents(), nodep, "Inconsistent"); FileLine* const flp = nodep->fileline(); diff --git a/test_regress/t/t_timing_fork_nba.pl b/test_regress/t/t_timing_fork_nba.pl new file mode 100755 index 000000000..372246cb3 --- /dev/null +++ b/test_regress/t/t_timing_fork_nba.pl @@ -0,0 +1,23 @@ +#!/usr/bin/env perl +if (!$::Driver) { use FindBin; exec("$FindBin::Bin/bootstrap.pl", @ARGV, $0); die; } +# DESCRIPTION: Verilator: Verilog Test driver/expect definition +# +# Copyright 2023 by Wilson Snyder. This program is free software; you +# can redistribute it and/or modify it under the terms of either the GNU +# Lesser General Public License Version 3 or the Perl Artistic License +# Version 2.0. +# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0 + +scenarios(simulator => 1); + +if (!$Self->have_coroutines) { + skip("No coroutine support"); +} +else { + compile( + verilator_flags2 => ["--exe --timing"], + ); +} + +ok(1); +1; diff --git a/test_regress/t/t_timing_fork_nba.v b/test_regress/t/t_timing_fork_nba.v new file mode 100644 index 000000000..013367bdf --- /dev/null +++ b/test_regress/t/t_timing_fork_nba.v @@ -0,0 +1,20 @@ +// DESCRIPTION: Verilator: Verilog Test module +// +// This file ONLY is placed under the Creative Commons Public Domain, for +// any use, without warranty, 2023 by Antmicro Ltd. +// SPDX-License-Identifier: CC0-1.0 + +module t (/*AUTOARG*/ + // Inputs + clk + ); + input clk; + reg b = 0, c = 1; + + always @(posedge clk) begin + fork + b <= c; + c <= b; + join + end +endmodule