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 ff06c23 commit 390d8faCopy full SHA for 390d8fa
regression/verilog/expressions/power3.desc
@@ -1,9 +1,8 @@
1
-KNOWNBUG
+CORE
2
power3.sv
3
4
^EXIT=0$
5
^SIGNAL=0$
6
--
7
^warning: ignoring
8
9
-The result is wrong.
regression/verilog/expressions/power3.sv
@@ -1,9 +1,9 @@
module main;
// Any arithmetic with x or z returns x.
- initial assert('bx ** 1 === 'x);
- initial assert('bz ** 1 === 'x);
- initial assert(1 ** 'bx === 'x);
- initial assert(1 ** 'bz === 'x);
+ initial assert('bx ** 1 === 32'hxxxx_xxxx);
+ initial assert('bz ** 1 === 32'hxxxx_xxxx);
+ initial assert(1 ** 'bx === 32'hxxxx_xxxx);
+ initial assert(1 ** 'bz === 32'hxxxx_xxxx);
endmodule
0 commit comments