Commentary: Changes update

This commit is contained in:
Wilson Snyder 2026-03-27 21:41:52 -04:00
parent f66df9e70e
commit 087dae2a5d
4 changed files with 24 additions and 15 deletions

View File

@ -42,6 +42,7 @@ Verilator 5.047 devel
* Support `##` delay on implication RHS in SVA properties (#7284). [Yilou Wang]
* Support boolean and/or in sequence expressions (#7285). [Yilou Wang]
* Support property-local variables and sequence match items (#7286). [Yilou Wang]
* Support SVA goto repetition `[->N]` in concurrent assertions (#7310). [Yilou Wang]
* Support `##[M:N]` range cycle delay in SVA sequences (#7312). [Yilou Wang]
* Support array map() method (#7307) (#7316). [Wei-Lun Chiu]
* Add VPI callback support to --main (#7145).
@ -58,9 +59,11 @@ Verilator 5.047 devel
* Optimize function call return value temporaries (#7152). [Geza Lore, Testorrent USA, Inc.]
* Optimize conditional merging across some impure statements (#7159). [Geza Lore, Testorrent USA, Inc.]
* Optimize reuse of existing associative terms in DfgPeephole. [Geza Lore, Testorrent USA, Inc.]
* Optimize duplicate vertices in DfgPeephole (#7305). [Geza Lore, Testorrent USA, Inc.]
* Optimize duplicate vertices and multiplexers in DfgPeephole (#7305). [Geza Lore, Testorrent USA, Inc.]
* Optimize commutative vertex operands in DFG for better combining. [Geza Lore, Testorrent USA, Inc.]
* Optimize DFG peephole until a fixed point (#7309). [Geza Lore, Testorrent USA, Inc.]
* Optimize comparisons with identical operands and $countones in DFG. [Geza Lore, Testorrent USA, Inc.]
* Optimize more patterns in DfgPeephole (#7332). [Geza Lore, Testorrent USA, Inc.]
* Fix recursive default assignment for sub-arrays (#4589) (#7202). [Julian Carrier]
* Fix shift width mismatch in constraint solver SMT emission (#5420) (#7265). [Yilou Wang]
* Fix randomize size+element queue constraints (#5582) (#7225). [Rahul Behl, Testorrent USA, Inc.]
@ -102,6 +105,8 @@ Verilator 5.047 devel
* Fix linking shared library with its dependencies (#7320). [Artur Bieniek, Antmicro Ltd.]
* Fix modport selection of virtual interface handle (#7321). [Yilou Wang]
* Fix false ASSIGNIN on interface input ports driven from outside (#7322). [Yilou Wang]
* Fix static initialization order for packages with class hierarchies (#7324). [Yilou Wang]
* Fix `disable iff` imply-delay statement linking (#7337). [Nick Brereton]
Verilator 5.046 2026-02-28

View File

@ -834,6 +834,7 @@ glibc
gmake
gmon
gotFinish
goto
gprof
gtkwave
hdr

View File

@ -4,17 +4,20 @@
// SPDX-FileCopyrightText: 2026 Eunseo Song
// SPDX-License-Identifier: CC0-1.0
module top(input clk, input rst, output reg [7:0] count);
always @(posedge clk) begin
if (rst)
count <= 0;
else
count <= count + 1;
end
module top (
input clk,
input rst,
output reg [7:0] count
);
initial begin
$display("Hello from t_flag_csplit_pch");
$write("*-* All Coverage-Coverage = 1\n");
$finish;
end
always @(posedge clk) begin
if (rst) count <= 0;
else count <= count + 1;
end
initial begin
$display("Hello from t_flag_csplit_pch");
$write("*-* All Coverage-Coverage = 1\n");
$finish;
end
endmodule

View File

@ -15,8 +15,8 @@
package pkg_a;
typedef enum int {
STATE_UNINIT = 0,
STATE_INIT = 1,
STATE_DONE = 2
STATE_INIT = 1,
STATE_DONE = 2
} state_e;
state_e g_state = STATE_UNINIT;