mirror of
https://github.com/verilator/verilator.git
synced 2025-04-05 04:02:37 +00:00
This commit is contained in:
parent
c05c48aaf3
commit
bf2b4e1b6a
@ -65,6 +65,7 @@ Graham Rushton
|
|||||||
Guokai Chen
|
Guokai Chen
|
||||||
Gus Smith
|
Gus Smith
|
||||||
Gustav Svensk
|
Gustav Svensk
|
||||||
|
Han Qi
|
||||||
Harald Heckmann
|
Harald Heckmann
|
||||||
Hennadii Chernyshchyk
|
Hennadii Chernyshchyk
|
||||||
Howard Su
|
Howard Su
|
||||||
|
@ -768,7 +768,8 @@ class ParamProcessor final {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
} else if (AstParamTypeDType* const modvarp = pinp->modPTypep()) {
|
} else if (AstParamTypeDType* const modvarp = pinp->modPTypep()) {
|
||||||
AstNodeDType* const exprp = VN_CAST(pinp->exprp(), NodeDType);
|
AstNodeDType* rawTypep = VN_CAST(pinp->exprp(), NodeDType);
|
||||||
|
AstNodeDType* const exprp = rawTypep ? rawTypep->skipRefToEnump() : nullptr;
|
||||||
const AstNodeDType* const origp = modvarp->skipRefToEnump();
|
const AstNodeDType* const origp = modvarp->skipRefToEnump();
|
||||||
if (!exprp) {
|
if (!exprp) {
|
||||||
pinp->v3error("Parameter type pin value isn't a type: Param "
|
pinp->v3error("Parameter type pin value isn't a type: Param "
|
||||||
|
18
test_regress/t/t_class_param_rewrite.py
Executable file
18
test_regress/t/t_class_param_rewrite.py
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/env python3
|
||||||
|
# DESCRIPTION: Verilator: Verilog Test driver/expect definition
|
||||||
|
#
|
||||||
|
# Copyright 2024 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
|
||||||
|
|
||||||
|
import vltest_bootstrap
|
||||||
|
|
||||||
|
test.scenarios('simulator')
|
||||||
|
|
||||||
|
test.compile()
|
||||||
|
|
||||||
|
test.execute()
|
||||||
|
|
||||||
|
test.passes()
|
25
test_regress/t/t_class_param_rewrite.v
Normal file
25
test_regress/t/t_class_param_rewrite.v
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
// DESCRIPTION: Verilator: Verilog Test module
|
||||||
|
//
|
||||||
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
||||||
|
// any use, without warranty, 2024 by Wilson Snyder.
|
||||||
|
// SPDX-License-Identifier: CC0-1.0
|
||||||
|
|
||||||
|
module test;
|
||||||
|
typedef enum { FOO_0 } foo_e;
|
||||||
|
typedef enum { BAR_0 } bar_e;
|
||||||
|
|
||||||
|
class baz #(parameter type E = foo_e);
|
||||||
|
static function void print();
|
||||||
|
E enum_item;
|
||||||
|
if (enum_item.first().name() != "BAR_0")
|
||||||
|
$stop;
|
||||||
|
endfunction
|
||||||
|
endclass
|
||||||
|
|
||||||
|
initial begin
|
||||||
|
baz#(bar_e)::print();
|
||||||
|
|
||||||
|
$write("*-* All Finished *-*\n");
|
||||||
|
$finish;
|
||||||
|
end
|
||||||
|
endmodule
|
Loading…
Reference in New Issue
Block a user