We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fe2c5e commit ba351c4Copy full SHA for ba351c4
regression/verilog/SVA/cover_sequence5.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+cover_sequence5.sv
3
+--bound 10
4
+^EXIT=10$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+This gives the wrong answer.
regression/verilog/SVA/cover_sequence5.sv
@@ -0,0 +1,15 @@
+module main(input clk);
+
+ // count up
+ int x = 0;
+ always_ff @(posedge clk)
+ x++;
+ // never passes, owing to disable iff
10
+ p0: cover sequence (disable iff (1) 1);
11
12
+ // passes when reaching x=10
13
+ p1: cover sequence (disable iff (x<10) 1);
14
15
+endmodule
0 commit comments