mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
Add test for shifting by INT_MAX
Currently resulting in CI failing on main during fsm checks which generate a circuit that simplifies to this.
This commit is contained in:
parent
df3c62a4ed
commit
db5b76edc1
9
tests/opt/opt_expr_shr_int_max.ys
Normal file
9
tests/opt/opt_expr_shr_int_max.ys
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
read_verilog << EOF
|
||||||
|
module uut_00034(b, y);
|
||||||
|
input signed [30:0] b;
|
||||||
|
output [11:0] y = b >> ~31'b0; // shift by INT_MAX
|
||||||
|
endmodule
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# This should succeed, even with UBSAN halt_on_error
|
||||||
|
opt_expr
|
Loading…
Reference in a new issue