aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2346/aggr4.vhdl
blob: 4eee0095d806b0359b3d37c81ff7f3571c2689ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
entity aggr4 is
end;

architecture test of aggr4 is

  signal A1, A0  : bit ;

  function aand (signal v : bit_vector) return bit is
    variable r : bit;
  begin
    r := '1';
    for i in v'range loop
      r := r and v (i);
    end loop;
    return r;
  end aand;
begin
  a1 <= aand (v (1) => A1, v(0) => A0);
end;