aboutsummaryrefslogtreecommitdiffstats
path: root/src/psl/psl-prints.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-02-13 18:00:36 +0100
committerTristan Gingold <tgingold@free.fr>2016-02-14 13:52:34 +0100
commitace70f3cc4d5ac8d5fb7e02e96d5b3187319e520 (patch)
tree775665dcf6ac26054734e1cc9a543bbc8f2281b9 /src/psl/psl-prints.adb
parent2c88f7c0f5a9859eeb118147444afbd47c71c2a8 (diff)
downloadghdl-ace70f3cc4d5ac8d5fb7e02e96d5b3187319e520.tar.gz
ghdl-ace70f3cc4d5ac8d5fb7e02e96d5b3187319e520.tar.bz2
ghdl-ace70f3cc4d5ac8d5fb7e02e96d5b3187319e520.zip
psl: cover directive works on a sequence, not on a property.
Diffstat (limited to 'src/psl/psl-prints.adb')
-rw-r--r--src/psl/psl-prints.adb14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/psl/psl-prints.adb b/src/psl/psl-prints.adb
index 19d7c3959..dd0755570 100644
--- a/src/psl/psl-prints.adb
+++ b/src/psl/psl-prints.adb
@@ -67,7 +67,9 @@ package body PSL.Prints is
| N_True
| N_False
| N_EOS
- | N_HDL_Expr =>
+ | N_HDL_Expr
+ | N_Property_Instance
+ | N_Sequence_Instance =>
return Prio_HDL;
when N_Or_Bool =>
return Prio_Seq_Or;
@@ -184,8 +186,6 @@ package body PSL.Prints is
end if;
end Print_Expr;
- procedure Print_Sequence (Seq : Node; Parent_Prio : Priority);
-
procedure Print_Count (N : Node) is
B : Node;
begin
@@ -222,7 +222,7 @@ package body PSL.Prints is
Put ("]");
end Print_Repeat_Sequence;
- procedure Print_Sequence (Seq : Node; Parent_Prio : Priority)
+ procedure Print_Sequence (Seq : Node; Parent_Prio : Priority := Prio_Lowest)
is
Prio : constant Priority := Get_Priority (Seq);
Add_Paren : constant Boolean := Prio < Parent_Prio
@@ -260,6 +260,8 @@ package body PSL.Prints is
when N_Booleans
| N_Name_Decl =>
Print_Expr (Seq);
+ when N_Sequence_Instance =>
+ Put (Image (Get_Identifier (Get_Declaration (Seq))));
when others =>
Error_Kind ("print_sequence", Seq);
end case;
@@ -387,6 +389,10 @@ package body PSL.Prints is
Print_Expr (Prop);
when N_Sequences =>
Print_Sequence (Prop, Parent_Prio);
+ when N_Property_Instance =>
+ Put (Image (Get_Identifier (Get_Declaration (Prop))));
+ when N_EOS =>
+ Put ("EOS");
when others =>
Error_Kind ("print_property", Prop);
end case;