diff --git a/src/V3LinkDot.cpp b/src/V3LinkDot.cpp index 6f81421e9..a49c54d3e 100644 --- a/src/V3LinkDot.cpp +++ b/src/V3LinkDot.cpp @@ -1127,6 +1127,7 @@ class LinkDotFindVisitor final : public AstNVisitor { } if (ins) { if (m_statep->forPrimary() && nodep->isGParam() + && VN_IS(m_modSymp->nodep(), Module) && (m_statep->rootEntp()->nodep() == m_modSymp->parentp()->nodep())) { // This is the toplevel module. Check for command line overwrites of parameters // We first search if the parameter is overwritten and then replace it with a diff --git a/test_regress/t/t_flag_parameter_pkg.pl b/test_regress/t/t_flag_parameter_pkg.pl new file mode 100755 index 000000000..c0493da3e --- /dev/null +++ b/test_regress/t/t_flag_parameter_pkg.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 2003 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); + +compile( + verilator_flags2 => ['-GPARAM_A=1'], + ms_flags2 => ['-GPARAM_A=1'], + ); + +execute( + check_finished => 1, + ); + +ok(1); +1; diff --git a/test_regress/t/t_flag_parameter_pkg.v b/test_regress/t/t_flag_parameter_pkg.v new file mode 100644 index 000000000..b5c67e4ff --- /dev/null +++ b/test_regress/t/t_flag_parameter_pkg.v @@ -0,0 +1,28 @@ +// DESCRIPTION: Verilator: Verilog Test module +// +// This file ONLY is placed into the Public Domain, for any use, +// without warranty, 2021 by Adrien Le Masle. +// SPDX-License-Identifier: CC0-1.0 + +package pack_a; + parameter PARAM_A = 0; +endpackage : pack_a + +//module t; +module t (/*AUTOARG*/ + // Inputs + clk + ); + + input clk; + + parameter PARAM_A = 0; + + initial begin + $display(PARAM_A); + if (PARAM_A != 1) $stop; + $write("*-* All Finished *-*\n"); + $finish; + end + +endmodule