aboutsummaryrefslogtreecommitdiffstats
path: root/src/psl/psl-prints.adb
diff options
context:
space:
mode:
Diffstat (limited to 'src/psl/psl-prints.adb')
-rw-r--r--src/psl/psl-prints.adb4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/psl/psl-prints.adb b/src/psl/psl-prints.adb
index cdd99c0c3..4cadc3f97 100644
--- a/src/psl/psl-prints.adb
+++ b/src/psl/psl-prints.adb
@@ -71,6 +71,7 @@ package body PSL.Prints is
| N_False
| N_EOS
| N_HDL_Expr
+ | N_HDL_Bool
| N_Property_Instance
| N_Sequence_Instance =>
return Prio_HDL;
@@ -152,7 +153,8 @@ package body PSL.Prints is
end;
when N_Name_Decl =>
Put (Image (Get_Identifier (N)));
- when N_HDL_Expr =>
+ when N_HDL_Expr
+ | N_HDL_Bool =>
if HDL_Expr_Printer = null then
Put ("HDL_Expr");
else