diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-10-13 20:21:22 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-10-13 20:21:22 +0200 |
commit | ff3105a7a8b8298771c64fd13171e33385f6fcc8 (patch) | |
tree | bb62de013a34b3742ce06377a75593ba45a13338 /src/psl | |
parent | 3486a9d34f6cdb83e5917da9b20a6e5bf9f13b81 (diff) | |
download | ghdl-ff3105a7a8b8298771c64fd13171e33385f6fcc8.tar.gz ghdl-ff3105a7a8b8298771c64fd13171e33385f6fcc8.tar.bz2 ghdl-ff3105a7a8b8298771c64fd13171e33385f6fcc8.zip |
synth: add support for sequence instance in vunit. Fix #1889
Diffstat (limited to 'src/psl')
-rw-r--r-- | src/psl/psl-build.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/psl/psl-build.adb b/src/psl/psl-build.adb index b9a0ccf9b..451466608 100644 --- a/src/psl/psl-build.adb +++ b/src/psl/psl-build.adb @@ -973,7 +973,8 @@ package body PSL.Build is begin case Get_Kind (N) is when N_Sequences - | N_Booleans => + | N_Booleans + | N_Sequence_Instance => -- Build A(S) or A(B) R := Build_SERE_FA (N); return Determinize.Determinize (R); |