Skip to content

Commit 46a3d1c

Browse files
committed
KNOWNBUG test for four-valued <<
1 parent aac75f1 commit 46a3d1c

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
KNOWNBUG
2+
shr3.sv
3+
--bound 0
4+
^EXIT=0$
5+
^SIGNAL=0$
6+
--
7+
^warning: ignoring
8+
--
9+
aval/bval encoding is missing.
+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
module main;
2+
3+
assert final (3'b101 << 1 === 3'b010);
4+
assert final ('b101 << 1 === 'b1010);
5+
assert final ('b10x << 1 === 'b10x0);
6+
assert final (3'b101 << 'bx === 32'hxxxx_xxxx);
7+
8+
endmodule

0 commit comments

Comments
 (0)