aboutsummaryrefslogtreecommitdiffstats
path: root/src/psl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-04-03 21:58:06 +0200
committerTristan Gingold <tgingold@free.fr>2021-04-03 21:58:59 +0200
commit5d2241961dc622eafc1516db9bd49ffa6f17ce0a (patch)
tree0fa92159d4b18cef8f65678c3d358fbb6eddb106 /src/psl
parent494c9334c3cc365c44f4f21f959acf4e576a7814 (diff)
downloadghdl-5d2241961dc622eafc1516db9bd49ffa6f17ce0a.tar.gz
ghdl-5d2241961dc622eafc1516db9bd49ffa6f17ce0a.tar.bz2
ghdl-5d2241961dc622eafc1516db9bd49ffa6f17ce0a.zip
psl-subsets: fix fallout of #1708
Diffstat (limited to 'src/psl')
-rw-r--r--src/psl/psl-subsets.adb5
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 =>