diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-01-02 21:43:13 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-01-02 21:43:13 +0100 |
commit | c414582a22b001b7ca9893a1c2e017fb0523003d (patch) | |
tree | e8c173ce64db767595c586d26deb9c86a544123e /src/vhdl/sem_expr.ads | |
parent | 9195e559d820e6fee7325da1502481d2f884084d (diff) | |
download | ghdl-c414582a22b001b7ca9893a1c2e017fb0523003d.tar.gz ghdl-c414582a22b001b7ca9893a1c2e017fb0523003d.tar.bz2 ghdl-c414582a22b001b7ca9893a1c2e017fb0523003d.zip |
Remove unused is_ref for choices. Adjust.
Diffstat (limited to 'src/vhdl/sem_expr.ads')
-rw-r--r-- | src/vhdl/sem_expr.ads | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/vhdl/sem_expr.ads b/src/vhdl/sem_expr.ads index 696217c7b..1e6ada5ba 100644 --- a/src/vhdl/sem_expr.ads +++ b/src/vhdl/sem_expr.ads @@ -206,13 +206,12 @@ package Sem_Expr is -- IS_SUB_RANGE True, they must be within SUB_TYPE. -- The choices must be locally static. -- If REORDER_CHOICES is true, CHOICE_CHAIN is ordered. - procedure Sem_Check_Continuous_Choices (Choice_Chain : in out Iir; + procedure Sem_Check_Continuous_Choices (Choice_Chain : Iir; Choice_Type : Iir; Low : out Iir; High : out Iir; Loc : Location_Type; - Is_Sub_Range : Boolean; - Reorder_Choices : Boolean); + Is_Sub_Range : Boolean); -- Analyze CHOICE_LIST when the choice expression SEL is of a -- one-dimensional character array type. |