diff options
-rw-r--r-- | testsuite/synth/issue1665/test.vhdl | 16 | ||||
-rwxr-xr-x | testsuite/synth/issue1665/testsuite.sh | 8 |
2 files changed, 24 insertions, 0 deletions
diff --git a/testsuite/synth/issue1665/test.vhdl b/testsuite/synth/issue1665/test.vhdl new file mode 100644 index 000000000..3591e23c7 --- /dev/null +++ b/testsuite/synth/issue1665/test.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.fixed_pkg.all; +use ieee.math_real.all; + +entity test is +end entity test; + +architecture synthesis of test is + constant test1 : real := (2.0**6); -- works + constant test2 : real := (2.0**6.0); -- unhandled predefined IEEE operator "**" + constant test3 : real := arctan(2.0); -- unhandled call to ieee function "arctan" + signal a : sfixed(7 downto 0); +begin +a <= to_sfixed(test2, a); + assert test2 = 64.0 severity failure; +end architecture synthesis; diff --git a/testsuite/synth/issue1665/testsuite.sh b/testsuite/synth/issue1665/testsuite.sh new file mode 100755 index 000000000..1bd00c114 --- /dev/null +++ b/testsuite/synth/issue1665/testsuite.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +. ../../testenv.sh + +GHDL_STD_FLAGS=--std=08 +synth_only test + +echo "Test successful" |