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
6 lines
156 B
Systemverilog
6 lines
156 B
Systemverilog
// pattern: size cast width 'shxxxxxxxx is not an integer
|
|
// location: size_cast_xpr_lit.sv:4:13
|
|
module top;
|
|
initial $display((1 << 'x)'(2));
|
|
endmodule
|