3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-06 01:24:10 +00:00

Add testcase for #2010

This commit is contained in:
Eddie Hung 2020-05-01 14:07:33 -07:00
parent 8ee32adac3
commit 7f9ecddb7f

10
tests/opt/bug2010.ys Normal file
View file

@ -0,0 +1,10 @@
read_verilog <<EOT
module test (
input signed [1:0] n,
output [3:0] dout
);
assign dout = n + 4'sd 4;
endmodule
EOT
equiv_opt -assert opt -fine