From 6e9336d11dfc4f53dba234e1f02a2b0172461e0c Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Wed, 25 Sep 2019 20:39:46 +0200 Subject: testsuite/synth: rename issueXX to synthXX for ghdlsynth-beta issues. --- testsuite/synth/issue26/int_test.vhdl | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 testsuite/synth/issue26/int_test.vhdl (limited to 'testsuite/synth/issue26/int_test.vhdl') diff --git a/testsuite/synth/issue26/int_test.vhdl b/testsuite/synth/issue26/int_test.vhdl deleted file mode 100644 index afc8c4cdb..000000000 --- a/testsuite/synth/issue26/int_test.vhdl +++ /dev/null @@ -1,20 +0,0 @@ -library ieee; -use ieee.std_logic_1164.all; - -entity int_test is - port (clk : in std_logic; - a, b : in integer range 0 to 1; - c : out std_logic); -end int_test; - -architecture rtl of int_test is -begin - process (clk) - begin - if rising_edge (clk) then - if a < b then - c <= '0'; - end if; - end if; - end process; -end rtl; -- cgit v1.2.3