diff options
Diffstat (limited to 'testsuite/synth/issue1144/issue.vhdl')
-rw-r--r-- | testsuite/synth/issue1144/issue.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/issue1144/issue.vhdl b/testsuite/synth/issue1144/issue.vhdl new file mode 100644 index 000000000..ca9721b75 --- /dev/null +++ b/testsuite/synth/issue1144/issue.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity issue is + port (i_data : in std_logic_vector(8 downto 0); + o_data : out std_logic_vector(3 downto 0); + clock : in std_logic); +end issue; + +architecture rtl of issue is + alias i_hi is i_data(3 downto 0); +begin + o_data <= i_hi; +end architecture; |