mirror of
https://github.com/YosysHQ/yosys
synced 2026-04-23 12:23:32 +00:00
9 lines
256 B
Text
9 lines
256 B
Text
# Regression test for issue #5734: muxpack crash when $logic_not / $eq / $reduce_or
|
|
# has Y port width > 1 (e.g. boolean result assigned to a wide wire).
|
|
read_verilog <<EOT
|
|
module top(input b, output [18:0] h);
|
|
assign h = ~|b;
|
|
endmodule
|
|
EOT
|
|
proc
|
|
muxpack
|