diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-08-11 11:48:00 +0200 |
---|---|---|
committer | umarcor <unai.martinezcorral@ehu.eus> | 2021-08-23 16:35:34 +0200 |
commit | b34f3e885407693a2839771fd469af4ce2b40978 (patch) | |
tree | 06ebd51682dbeaa005d13533386b9b8475efc921 /testsuite | |
parent | 3abbfe34b529af865d6549bb3e6ed47ea1ab1e37 (diff) | |
download | ghdl-b34f3e885407693a2839771fd469af4ce2b40978.tar.gz ghdl-b34f3e885407693a2839771fd469af4ce2b40978.tar.bz2 ghdl-b34f3e885407693a2839771fd469af4ce2b40978.zip |
Improvements for case generate statements.
Diffstat (limited to 'testsuite')
-rw-r--r-- | testsuite/pyunit/Current.vhdl | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/testsuite/pyunit/Current.vhdl b/testsuite/pyunit/Current.vhdl index c0c66b0e9..1f1e6c51c 100644 --- a/testsuite/pyunit/Current.vhdl +++ b/testsuite/pyunit/Current.vhdl @@ -151,9 +151,24 @@ begin begin inst: component Case0Dummy; - when others => + when 1 | 2 => constant G5 : boolean := False; begin + inst: component Case12Dummy; + + when 3 to 4 => + constant G6 : boolean := False; + begin + inst: component Case34Dummy; + + when 5 to 6 | 8 to 9 => + constant G7 : boolean := False; + begin + inst: component Case5689Dummy; + + when others => + constant G8 : boolean := False; + begin inst: component OthersDummy; end generate; end architecture behav; |