More fixes in ternary op sign handling
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user