diff options
Diffstat (limited to 'testsuite/synth')
-rw-r--r-- | testsuite/synth/issue2224/test.vhdl | 16 | ||||
-rwxr-xr-x | testsuite/synth/issue2224/testsuite.sh | 7 |
2 files changed, 23 insertions, 0 deletions
diff --git a/testsuite/synth/issue2224/test.vhdl b/testsuite/synth/issue2224/test.vhdl new file mode 100644 index 000000000..14d96cc3f --- /dev/null +++ b/testsuite/synth/issue2224/test.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.std_logic_misc.all; + +entity test is +port ( + clk : in std_logic; + d : in std_logic_vector(2 downto 0); + q : out std_logic +); +end entity; + +architecture rtl of test is +begin + q <= and_reduce(d); +end architecture; diff --git a/testsuite/synth/issue2224/testsuite.sh b/testsuite/synth/issue2224/testsuite.sh new file mode 100755 index 000000000..ea723b22a --- /dev/null +++ b/testsuite/synth/issue2224/testsuite.sh @@ -0,0 +1,7 @@ +#! /bin/sh + +. ../../testenv.sh + +synth_only test + +echo "Test successful" |