aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/sem_decls.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/vhdl/sem_decls.adb')
-rw-r--r--src/vhdl/sem_decls.adb7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vhdl/sem_decls.adb b/src/vhdl/sem_decls.adb
index d021bee98..53daeb6fa 100644
--- a/src/vhdl/sem_decls.adb
+++ b/src/vhdl/sem_decls.adb
@@ -31,6 +31,7 @@ with Sem_Scopes; use Sem_Scopes;
with Sem_Names; use Sem_Names;
with Sem_Specs; use Sem_Specs;
with Sem_Types; use Sem_Types;
+with Sem_Psl;
with Sem_Inst;
with Xrefs; use Xrefs;
use Iir_Chains;
@@ -3056,6 +3057,12 @@ package body Sem_Decls is
| Iir_Kind_Through_Quantity_Declaration =>
Sem_Branch_Quantity_Declaration (Decl, Last_Obj_Decl);
Last_Obj_Decl := Decl;
+
+ when Iir_Kind_Psl_Declaration =>
+ Sem_Psl.Sem_Psl_Declaration (Decl);
+ when Iir_Kind_Psl_Default_Clock =>
+ Sem_Psl.Sem_Psl_Default_Clock (Decl);
+
when others =>
Error_Kind ("sem_declaration_chain", Decl);
end case;