aboutsummaryrefslogtreecommitdiffstats
path: root/psl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2014-06-21 21:24:15 +0200
committerTristan Gingold <tgingold@free.fr>2014-06-21 21:24:15 +0200
commit212268f54c947f4360a7d0e5b45faa97f76a4a9d (patch)
tree76a19a1ff148903c412f9f2191901ee6797b2939 /psl
parent270280a34295fa42785f9c8d99ad24b93d411e0c (diff)
downloadghdl-212268f54c947f4360a7d0e5b45faa97f76a4a9d.tar.gz
ghdl-212268f54c947f4360a7d0e5b45faa97f76a4a9d.tar.bz2
ghdl-212268f54c947f4360a7d0e5b45faa97f76a4a9d.zip
Add psl cover directive (ticket19).
Diffstat (limited to 'psl')
-rw-r--r--psl/psl-prints.adb7
1 files changed, 6 insertions, 1 deletions
diff --git a/psl/psl-prints.adb b/psl/psl-prints.adb
index 6e4f37022..80da47dab 100644
--- a/psl/psl-prints.adb
+++ b/psl/psl-prints.adb
@@ -41,7 +41,8 @@ package body PSL.Prints is
return Prio_Seq_And;
when N_Imp_Seq
| N_Overlap_Imp_Seq
- | N_Log_Imp_Prop =>
+ | N_Log_Imp_Prop
+ | N_Imp_Bool =>
return Prio_Bool_Imp;
when N_Name_Decl
| N_Number
@@ -153,6 +154,10 @@ package body PSL.Prints is
Print_Expr (Get_Left (N), Prio);
Put (" || ");
Print_Expr (Get_Right (N), Prio);
+ when N_Imp_Bool =>
+ Print_Expr (Get_Left (N), Prio);
+ Put (" -> ");
+ Print_Expr (Get_Right (N), Prio);
when others =>
Error_Kind ("print_expr", N);
end case;