diff options
author | Tristan Gingold <tgingold@free.fr> | 2015-01-20 15:22:19 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2015-01-20 15:22:19 +0100 |
commit | 057fe02c3e99bee64cea06c057afc2d50732baad (patch) | |
tree | 8d8bbdaae16d2667c0df2d9d5f116edfd052df9d /testsuite/gna/bug07/repro.vhdl | |
parent | 4b6f841fcd09ce8f0a80e87d4031d9417c0eabb5 (diff) | |
download | ghdl-057fe02c3e99bee64cea06c057afc2d50732baad.tar.gz ghdl-057fe02c3e99bee64cea06c057afc2d50732baad.tar.bz2 ghdl-057fe02c3e99bee64cea06c057afc2d50732baad.zip |
Add bug07 testcase (locally discrete array compare).
Diffstat (limited to 'testsuite/gna/bug07/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug07/repro.vhdl | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testsuite/gna/bug07/repro.vhdl b/testsuite/gna/bug07/repro.vhdl new file mode 100644 index 000000000..89d6f2924 --- /dev/null +++ b/testsuite/gna/bug07/repro.vhdl @@ -0,0 +1,21 @@ +entity repro is +end repro; + +architecture behav of repro is + type int_vector is array (natural range <>) of integer; + + constant c1 : int_vector (0 to 1) := 12 & 13; + constant c2 : int_vector (0 to 1) := 14 & 15; + constant p : boolean := c1 = c2; + constant p1 : boolean := c1 < c2; +begin + process + begin + case true is + when p => null; + when true => null; + end case; + wait; + end process; +end behav; + |