mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-30 09:28:12 +02:00
- fold string literal comparisons - fold non-decimal bit shifts - fold non-decimal integer comparisons - fold decimal bitwise AND and OR - simplify cast expressions before elaboration - remove duplicate cast expression traversal - flatten concatenated numbers in a single pass
7 lines
172 B
Systemverilog
7 lines
172 B
Systemverilog
// pattern: size cast width 'shxxxxxxxx is not an integer
|
|
// location: size_cast_xpr_var.sv:5:13
|
|
module top;
|
|
wire x = 0;
|
|
initial $display((1 << 'x)'(x));
|
|
endmodule
|