mirror of
https://github.com/YosysHQ/yosys
synced 2025-07-24 21:27:00 +00:00
Various ast changes for early expression width detection (prep for constfold fixes)
This commit is contained in:
parent
0b4a64ac6a
commit
943329c1dc
5 changed files with 146 additions and 30 deletions
|
@ -73,3 +73,10 @@ module test10(a, b, c, y);
|
|||
assign y = ^(a ? b : c);
|
||||
endmodule
|
||||
|
||||
module test11(a, b, y);
|
||||
input signed [3:0] a;
|
||||
input signed [3:0] b;
|
||||
output signed [5:0] y;
|
||||
assign y = -(5'd27);
|
||||
endmodule
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue