mirror of https://github.com/YosysHQ/yosys.git
Added another mem2reg test case
This commit is contained in:
parent
82a4a0230f
commit
cdd0b85e47
|
@ -81,3 +81,14 @@ module mem2reg_test4(result1, result2, result3);
|
|||
assign result3 = intermediate[depth2Index(3)];
|
||||
endmodule
|
||||
|
||||
// ------------------------------------------------------
|
||||
|
||||
module mem2reg_test5(input ctrl, output out);
|
||||
wire [0:0] foo[0:0];
|
||||
wire [0:0] bar[0:1];
|
||||
|
||||
assign foo[0] = ctrl;
|
||||
assign bar[0] = 0, bar[1] = 1;
|
||||
assign out = bar[foo[0]];
|
||||
endmodule
|
||||
|
||||
|
|
Loading…
Reference in New Issue