aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue954/ent2.vhdl
blob: 503a41e6e06c28cd4165cf01f2f59506e97a62d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity ent is
    port (
        i : in bit;
        i2 : bit;
        o : out bit
    );
end ent;

architecture a of ent is
begin
  o <= i or i2;
end;