diff options
Diffstat (limited to 'testsuite/gna/issue2276/mwe.vhdl')
-rw-r--r-- | testsuite/gna/issue2276/mwe.vhdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/gna/issue2276/mwe.vhdl b/testsuite/gna/issue2276/mwe.vhdl new file mode 100644 index 000000000..28b06009e --- /dev/null +++ b/testsuite/gna/issue2276/mwe.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity mwe is +end entity; + +architecture tb of mwe is + + constant ic_slv : std_logic_vector(63 downto 0) := x"7000000000000228"; + signal ic_bv : bit_vector(ic_slv'range); + +begin + + ic_bv <= to_bitvector(ic_slv); + +end architecture; |