This commit is contained in:
parent
472a131df7
commit
351d67c81e
|
|
@ -3923,6 +3923,7 @@ class LinkDotResolveVisitor final : public VNVisitor {
|
|||
<< (suggest.empty() ? "" : nodep->warnMore() + suggest)
|
||||
<< '\n'
|
||||
<< nodep->warnContextPrimary() << decl);
|
||||
VL_DO_DANGLING(pushDeletep(nodep->unlinkFrBack()), nodep);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,16 @@
|
|||
#!/usr/bin/env python3
|
||||
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||
#
|
||||
# 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-FileCopyrightText: 2026 Wilson Snyder
|
||||
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
||||
|
||||
import vltest_bootstrap
|
||||
|
||||
test.scenarios('vlt')
|
||||
|
||||
test.lint()
|
||||
|
||||
test.passes()
|
||||
|
|
@ -0,0 +1,16 @@
|
|||
// DESCRIPTION: Verilator: Verilog Test module
|
||||
//
|
||||
// This file ONLY is placed under the Creative Commons Public Domain.
|
||||
// SPDX-FileCopyrightText: 2026 Nikolai Kumar
|
||||
// SPDX-License-Identifier: CC0-1.0
|
||||
|
||||
/* verilator lint_off PINNOTFOUND */
|
||||
|
||||
module child ();
|
||||
endmodule
|
||||
|
||||
module t;
|
||||
child u_child (
|
||||
.missing_port (1'b0)
|
||||
);
|
||||
endmodule
|
||||
Loading…
Reference in New Issue