From 3650fd7fbe45a00792770d9ecb9397bc27ea0845 Mon Sep 17 00:00:00 2001 From: Clifford Wolf Date: Fri, 12 Jul 2013 13:13:04 +0200 Subject: More fixes in ternary op sign handling --- tests/simple/vloghammer.v | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'tests') diff --git a/tests/simple/vloghammer.v b/tests/simple/vloghammer.v index c97a2be5..fffa3505 100644 --- a/tests/simple/vloghammer.v +++ b/tests/simple/vloghammer.v @@ -65,3 +65,11 @@ module test09(a, b, c, y); assign y = a ? b : c; endmodule +module test10(a, b, c, y); + input a; + input signed [1:0] b; + input signed [2:0] c; + output y; + assign y = ^(a ? b : c); +endmodule + -- cgit v1.2.3