diff options
Diffstat (limited to 'testsuite/synth/issue1198/for_loop.vhdl')
-rw-r--r-- | testsuite/synth/issue1198/for_loop.vhdl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/testsuite/synth/issue1198/for_loop.vhdl b/testsuite/synth/issue1198/for_loop.vhdl new file mode 100644 index 000000000..4d1078dbd --- /dev/null +++ b/testsuite/synth/issue1198/for_loop.vhdl @@ -0,0 +1,25 @@ +library IEEE; +use IEEE.std_logic_1164.all; +use IEEE.std_logic_unsigned.all; + +entity for_loop is + port( + a : in std_logic_vector(7 downto 0); + Count : out std_logic_vector(2 downto 0) + ); +end for_loop; + +architecture behavior of for_loop is +begin + process(a) + variable Count_Aux : std_logic_vector(2 downto 0); + begin + Count_Aux := "000"; + for i in a'range loop + if (a(i) = '0') then + Count_Aux := Count_Aux + 1; + end if; + end loop; + Count <= Count_Aux; + end process; +end behavior; |