aboutsummaryrefslogtreecommitdiffstats
path: root/tests/opt/opt_expr_cmp.v
diff options
context:
space:
mode:
Diffstat (limited to 'tests/opt/opt_expr_cmp.v')
-rw-r--r--tests/opt/opt_expr_cmp.v5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/opt/opt_expr_cmp.v b/tests/opt/opt_expr_cmp.v
index 72372bdf0..500b15f1b 100644
--- a/tests/opt/opt_expr_cmp.v
+++ b/tests/opt/opt_expr_cmp.v
@@ -14,4 +14,9 @@ module top(...);
output o2_2 = 4'sb0000 <= $signed(a);
output o2_3 = $signed(a) < 4'sb0000;
output o2_4 = $signed(a) >= 4'sb0000;
+
+ output o3_1 = 4'b0100 > a;
+ output o3_2 = 4'b0100 <= a;
+ output o3_3 = a < 4'b0100;
+ output o3_4 = a >= 4'b0100;
endmodule