Add sub-assign and and-assign tests
authorKamil Rakoczy <krakoczy@antmicro.com>
Thu, 25 Jun 2020 12:20:47 +0000 (14:20 +0200)
committerKamil Rakoczy <krakoczy@antmicro.com>
Thu, 25 Jun 2020 12:32:05 +0000 (14:32 +0200)
Signed-off-by: Kamil Rakoczy <krakoczy@antmicro.com>
tests/opt/opt_expr_combined_assign.ys

index 56fbac9de24df7452def6de3294391a775528c35..b18923c7b91e2f1473d8578f03c379207e72d3c9 100644 (file)
@@ -47,3 +47,37 @@ equiv_opt -assert opt_expr -fine
 design -load postopt
 
 select -assert-count 1 t:$xor r:A_WIDTH=4 r:B_WIDTH=4 r:Y_WIDTH=4 %i %i %i
+
+design -reset
+read_verilog -sv <<EOT
+module opt_expr_sub_test(input [3:0] i, input [7:0] j, output [8:0] o);
+wire[8:0] a = 8'b0;
+initial begin
+        a -= i;
+        a -= j;
+end
+    assign o = a;
+endmodule
+EOT
+proc
+equiv_opt -assert opt_expr -fine
+design -load postopt
+
+select -assert-count 1 t:$sub r:A_WIDTH=9 r:B_WIDTH=8 r:Y_WIDTH=9 %i %i %i
+
+design -reset
+read_verilog -sv <<EOT
+module opt_expr_and_test(input [3:0] i, input [7:0] j, output [8:0] o);
+wire[8:0] a = 8'b11111111;
+initial begin
+        a &= i;
+        a &= j;
+end
+    assign o = a;
+endmodule
+EOT
+proc
+equiv_opt -assert opt_expr -fine
+design -load postopt
+
+select -assert-count 1 t:$and r:A_WIDTH=4 r:B_WIDTH=4 r:Y_WIDTH=4 %i %i %i