From d54d4128c0c7a58deed223dea03c13ce548166a5 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Wed, 8 Jun 2022 22:10:53 +0200 Subject: testsuite/synth: add a test for #2083 --- testsuite/synth/issue2083/bug.vhdl | 31 +++++++++++++++++++++++++++++++ testsuite/synth/issue2083/testsuite.sh | 8 ++++++++ 2 files changed, 39 insertions(+) create mode 100644 testsuite/synth/issue2083/bug.vhdl create mode 100755 testsuite/synth/issue2083/testsuite.sh (limited to 'testsuite/synth/issue2083') diff --git a/testsuite/synth/issue2083/bug.vhdl b/testsuite/synth/issue2083/bug.vhdl new file mode 100644 index 000000000..fd8695ce1 --- /dev/null +++ b/testsuite/synth/issue2083/bug.vhdl @@ -0,0 +1,31 @@ +library IEEE; +use IEEE.std_logic_1164.all; + +entity bug is + port ( + clk : in std_ulogic + ); +end bug; + +architecture behav of bug is + type fields_t is record + field_a : std_ulogic_vector; + field_b : std_ulogic; + end record; + + type field_array_t is array(natural range<>) of fields_t; + + function fun return std_ulogic is + variable field_array : field_array_t(0 to 1)(field_a(0 to 31)); + begin + if field_array(0).field_b = '1' then -- this causes the crash + --nothing + end if; + return '0'; + end function; + + constant data : std_ulogic := fun; +begin + +end architecture; + diff --git a/testsuite/synth/issue2083/testsuite.sh b/testsuite/synth/issue2083/testsuite.sh new file mode 100755 index 000000000..c355095b7 --- /dev/null +++ b/testsuite/synth/issue2083/testsuite.sh @@ -0,0 +1,8 @@ +#! /bin/sh + +. ../../testenv.sh + +GHDL_STD_FLAGS=--std=08 +synth_only bug + +echo "Test successful" -- cgit v1.2.3