diff options
| author | Tristan Gingold <tgingold@free.fr> | 2021-04-03 21:58:06 +0200 | 
|---|---|---|
| committer | Tristan Gingold <tgingold@free.fr> | 2021-04-03 21:58:59 +0200 | 
| commit | 5d2241961dc622eafc1516db9bd49ffa6f17ce0a (patch) | |
| tree | 0fa92159d4b18cef8f65678c3d358fbb6eddb106 /src | |
| parent | 494c9334c3cc365c44f4f21f959acf4e576a7814 (diff) | |
| download | ghdl-5d2241961dc622eafc1516db9bd49ffa6f17ce0a.tar.gz ghdl-5d2241961dc622eafc1516db9bd49ffa6f17ce0a.tar.bz2 ghdl-5d2241961dc622eafc1516db9bd49ffa6f17ce0a.zip  | |
psl-subsets: fix fallout of #1708
Diffstat (limited to 'src')
| -rw-r--r-- | src/psl/psl-subsets.adb | 5 | 
1 files changed, 3 insertions, 2 deletions
diff --git a/src/psl/psl-subsets.adb b/src/psl/psl-subsets.adb index ee3b5b538..303efe421 100644 --- a/src/psl/psl-subsets.adb +++ b/src/psl/psl-subsets.adb @@ -129,8 +129,6 @@ package body PSL.Subsets is           when N_Name =>              null;           when N_Star_Repeat_Seq -            | N_Goto_Repeat_Seq -            | N_Equal_Repeat_Seq              | N_Plus_Repeat_Seq =>              declare                 N2 : constant Node := Get_Sequence (N); @@ -139,6 +137,9 @@ package body PSL.Subsets is                    Check_Simple (N2);                 end if;              end; +         when N_Goto_Repeat_Seq +            | N_Equal_Repeat_Seq => +            null;           when N_Match_And_Seq              | N_And_Seq              | N_Or_Seq =>  | 
