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 f25aad5 commit 79a004fCopy full SHA for 79a004f
regression/verilog/expressions/power1.desc
@@ -0,0 +1,9 @@
1
+KNOWNBUG
2
+power1.sv
3
+--bound 0
4
+^EXIT=0$
5
+^SIGNAL=0$
6
+--
7
+^warning: ignoring
8
9
+Lowering for power on three-valued logic is missing.
regression/verilog/expressions/power1.sv
@@ -0,0 +1,12 @@
+module main;
+
+ property01: assert final (2**0==1);
+ property02: assert final (2**1==2);
+ property03: assert final ((-2)**1==-2);
+ property04: assert final (2**2==4);
+ property05: assert final (2**-1==0);
+ property06: assert final ($bits(3'd2**2)==3);
+ property07: assert final (2**'bx===32'bx);
10
+ property08: assert final ('bx**2===32'bx);
11
12
+endmodule
0 commit comments