circt icon indicating copy to clipboard operation
circt copied to clipboard

[ImportVerilog] add unpacked array concatenation

Open chenbo-again opened this issue 9 months ago • 1 comments
trafficstars

This PR is aimed to provide unpacked array concatenation.

// unpacked array concatenation
string s[] = { "hello", "sad", "world" };
// string concatenation
string = { "hello", "sad", "world" };

these two operation do not act the same way, and the result of concat is depends on the Lhs.

close #8173

chenbo-again avatar Feb 24 '25 16:02 chenbo-again