Commentary: Changes update

This commit is contained in:
Wilson Snyder 2026-03-12 07:22:33 -04:00
parent b3a1a15e2b
commit 1198ee919d
2 changed files with 8 additions and 5 deletions

View File

@ -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

View File

@ -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;