aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-06-23 18:13:41 +0200
committerTristan Gingold <tgingold@free.fr>2019-06-23 18:13:41 +0200
commitc98cd530f2e58ecff06c6065c6e7427bf727875d (patch)
tree11db1dec79bfb332e1e406b4a959adf170d95f83 /src/synth
parent4d7e1c0107a4656d76d9dbdddcd7cb34781d6d21 (diff)
downloadghdl-c98cd530f2e58ecff06c6065c6e7427bf727875d.tar.gz
ghdl-c98cd530f2e58ecff06c6065c6e7427bf727875d.tar.bz2
ghdl-c98cd530f2e58ecff06c6065c6e7427bf727875d.zip
synth: handle discrete choice in case statements.
Diffstat (limited to 'src/synth')
-rw-r--r--src/synth/synth-stmts.adb6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/synth/synth-stmts.adb b/src/synth/synth-stmts.adb
index 934584566..17be7396a 100644
--- a/src/synth/synth-stmts.adb
+++ b/src/synth/synth-stmts.adb
@@ -610,7 +610,11 @@ package body Synth.Stmts is
pragma Assert (Choice_Idx = Choice_Data'Last);
-- Sort by order.
- Sort_String_Choices (Case_Info);
+ if Get_Kind (Get_Type (Expr)) in Iir_Kinds_Discrete_Type_Definition then
+ Sort_Discrete_Choices (Case_Info);
+ else
+ Sort_String_Choices (Case_Info);
+ end if;
-- Create list of wire_id, sort it.
Nbr_Wires := Count_Wires_In_Alternatives (Alts.all);