aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMarcelina Koƛcielnicka <mwk@0x04.net>2021-01-14 09:58:33 +0100
committerMarcelina Koƛcielnicka <mwk@0x04.net>2021-01-14 14:54:08 +0100
commit01626e6746e85832d5b75785b9e45f39ff8eb299 (patch)
treee32c1fcb601b283525d38bab8d1d2861f45e9118 /tests
parent7cd044bbc4cc4b63302363f77d913403957fdcd3 (diff)
downloadyosys-01626e6746e85832d5b75785b9e45f39ff8eb299.tar.gz
yosys-01626e6746e85832d5b75785b9e45f39ff8eb299.tar.bz2
yosys-01626e6746e85832d5b75785b9e45f39ff8eb299.zip
opt_share: Fix X and CO signal width for shifted $alu in opt_share.
These need to be the same length as actual Y, not visible part of Y. Fixes #2538.
Diffstat (limited to 'tests')
-rw-r--r--tests/opt/opt_share_bug2538.ys20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/opt/opt_share_bug2538.ys b/tests/opt/opt_share_bug2538.ys
new file mode 100644
index 000000000..7261c6695
--- /dev/null
+++ b/tests/opt/opt_share_bug2538.ys
@@ -0,0 +1,20 @@
+read_verilog <<EOT
+
+module top(...);
+
+input [3:0] A;
+input S;
+output [1:0] Y;
+
+wire [3:0] A1 = A + 1;
+wire [3:0] A2 = A + 2;
+assign Y = S ? A1[3:2] : A2[3:2];
+
+endmodule
+
+EOT
+
+proc
+alumacc
+equiv_opt -assert opt_share
+