aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/vhdl/vhdl-sem_psl.adb6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vhdl/vhdl-sem_psl.adb b/src/vhdl/vhdl-sem_psl.adb
index 18141eeb8..025647e94 100644
--- a/src/vhdl/vhdl-sem_psl.adb
+++ b/src/vhdl/vhdl-sem_psl.adb
@@ -502,7 +502,8 @@ package body Vhdl.Sem_Psl is
Res : PSL_Node;
begin
case Get_Kind (Prop) is
- when N_Braced_SERE =>
+ when N_Braced_SERE
+ | N_Clocked_SERE =>
return Sem_Sequence (Prop);
when N_Star_Repeat_Seq
| N_Plus_Repeat_Seq =>
@@ -659,6 +660,9 @@ package body Vhdl.Sem_Psl is
if Get_Kind (Child) = N_Clock_Event then
Set_Property (Prop, Get_Property (Child));
Clk := Get_Boolean (Child);
+ elsif Get_Kind (Child) = N_Clocked_SERE then
+ Clk := Get_Boolean (Child);
+ Set_Property (Prop, Get_SERE (Child));
end if;
when N_Property_Instance =>
Child := Get_Declaration (Prop);