3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2026-04-02 09:59:00 +00:00

Merge pull request #5786 from YosysHQ/gus/muxpack-wide-y-test

Regression test for #5765
This commit is contained in:
Emil J 2026-03-31 12:47:08 +02:00 committed by GitHub
commit ecaaea8734
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,9 @@
# 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