Files
sv2v/test/core/cast_literal.sv
Zachary Snow 103db6741f constant folding for size casts of number literals
- standardize number casting
- fix extension of casts of unsized literals to 32 bits
2021-07-10 12:38:55 -04:00

8 lines
168 B
Systemverilog

`define TEST(size, literal) \
$display(`"size'(literal) = %b`", size'(literal));
module top;
initial begin
`include "cast_literal.vh"
end
endmodule