diff options
Diffstat (limited to 'testsuite/synth/issue1428/repro2.vhdl')
-rw-r--r-- | testsuite/synth/issue1428/repro2.vhdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue1428/repro2.vhdl b/testsuite/synth/issue1428/repro2.vhdl new file mode 100644 index 000000000..21c15b1c9 --- /dev/null +++ b/testsuite/synth/issue1428/repro2.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity repro2 is + port (a : out std_logic; + b : std_logic_vector(7 downto 0)); +end; + +architecture behav of repro2 is + signal s : std_logic_vector(7 downto 0); +begin + s <= b; + a <= '1' when s /= x"00" else '0'; + + s (0) <= '0'; +end behav; |