Commentary: Changes update
This commit is contained in:
parent
b3a1a15e2b
commit
1198ee919d
3
Changes
3
Changes
|
|
@ -52,6 +52,9 @@ Verilator 5.047 devel
|
|||
* Fix `dist` operator inside constraint if blocks (#7221) (#7224). [Rahul Behl, Testorrent USA, Inc.]
|
||||
* Fix soft cross-object constraint priority inversion (#7228) (#7233). [Yilou Wang]
|
||||
* Fix internal error when derived class calls this.randomize() with inherited rand members (#7229) (#7234). [Yilou Wang]
|
||||
* Fix enum range constraints missing for rand variables in sub-objects (#7230) (#7235). [Yilou Wang]
|
||||
* Fix vpi_put_value release on non-continuous signal (#7231) (#7241). [Christian Hecken]
|
||||
* Fix tracing of typedefed 1D packed arrays with --trace-structs (#7237). [Geza Lore, Testorrent USA, Inc.]
|
||||
|
||||
|
||||
Verilator 5.046 2026-02-28
|
||||
|
|
|
|||
|
|
@ -25,15 +25,15 @@
|
|||
module t;
|
||||
|
||||
typedef enum logic [1:0] {
|
||||
RED = 2'd0,
|
||||
RED = 2'd0,
|
||||
GREEN = 2'd1,
|
||||
BLUE = 2'd2
|
||||
BLUE = 2'd2
|
||||
} color_e;
|
||||
|
||||
typedef enum logic [2:0] {
|
||||
IDLE = 3'd0,
|
||||
RUN = 3'd3,
|
||||
STOP = 3'd5
|
||||
IDLE = 3'd0,
|
||||
RUN = 3'd3,
|
||||
STOP = 3'd5
|
||||
} state_e;
|
||||
|
||||
class InnerObj;
|
||||
|
|
|
|||
Loading…
Reference in New Issue