Remove verbose comments

Co-authored-by: Wilson Snyder <wsnyder@wsnyder.org>
This commit is contained in:
Patrick Creighton 2026-07-08 08:28:01 -07:00 committed by GitHub
parent 67d2909c98
commit 8d39a5bbbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 0 additions and 6 deletions

View File

@ -28,14 +28,8 @@ module t (
end
end
// Labelled INLINE concurrent assertion (not wrapped in a named
// property ... endproperty). With --coverage this previously hit an
// internal error (V3Localize.cpp: 'AstVarRef not under function').
a : assert property (@(posedge clk) !rst_n |=> q == 1'b0);
// Labelled INLINE concurrent cover with disable-iff and a sampled-value
// function. With --coverage this previously emitted a false
// 'Concurrent assertion has no clock' error.
c : cover property (@(posedge clk) disable iff (!rst_n) en && cnt == $past(cnt));
always @(posedge clk) begin