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

library ieee;
use ieee.std_logic_1164.all;

architecture behav of tc12 is
  signal clk : std_logic;
  signal tg : std_logic;
begin
  process (clk) is
  begin
    if tg and falling_edge(clk) then
      null;
    end if;
  end process;
end behav;