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.
2 parents 756dfeb + 1ca0d63 commit f48e9b2Copy full SHA for f48e9b2
regression/verilog/SVA/immediate1.desc
@@ -0,0 +1,9 @@
1
+CORE
2
+immediate1.sv
3
+--bound 20
4
+^\[main\.assert\.1\] always \(main\.x == 11 \|-> main\.x & 1\): PROVED up to bound 20$
5
+^EXIT=0$
6
+^SIGNAL=0$
7
+--
8
+^warning: ignoring
9
regression/verilog/SVA/immediate1.sv
@@ -0,0 +1,14 @@
+module main(input clk);
+
+ reg [31:0] x;
+ initial x=0;
+ always @(posedge clk) begin
+ if(x == 11)
+ assert(x & 1); // holds
10
11
+ x<=x+1;
12
+ end
13
14
+endmodule
0 commit comments