summaryrefslogtreecommitdiff
path: root/tests/hana/test_intermout_bufrm_2_test.v
blob: 853f1dc9a37322c0f04b45a673e4f174b5c32db6 (plain)
1
2
3
4
5
6
7
module test(input in, output out);
//intermediate buffers should be removed
wire w1, w2;
assign w1 = in;
assign w2 = w1;
assign out = w2;
endmodule