diff options
Diffstat (limited to 'testsuite/gna/issue1677/repro.vhdl')
-rw-r--r-- | testsuite/gna/issue1677/repro.vhdl | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testsuite/gna/issue1677/repro.vhdl b/testsuite/gna/issue1677/repro.vhdl new file mode 100644 index 000000000..adf891471 --- /dev/null +++ b/testsuite/gna/issue1677/repro.vhdl @@ -0,0 +1,20 @@ +library IEEE; +use IEEE.std_logic_1164.all; +use IEEE.numeric_std.all; + +entity saturatingadd is + port( + result : out unsigned(7 downto 0) + ); +end saturatingadd; + +architecture synth of saturatingadd is + +begin + + process is + begin + result <= "00000000"; + end process; + +end; |