diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-03-11 21:09:39 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-03-13 06:30:27 +0100 |
commit | d70084ccb149ff4f5fca072c672b1f3d040358a9 (patch) | |
tree | 1b2cb2172368b02be2f5c92bab1f59583ec4dec9 /src/psl/psl-prints.adb | |
parent | 5c398db1b18a346cf2cb25acac07b068ccd7deee (diff) | |
download | ghdl-d70084ccb149ff4f5fca072c672b1f3d040358a9.tar.gz ghdl-d70084ccb149ff4f5fca072c672b1f3d040358a9.tar.bz2 ghdl-d70084ccb149ff4f5fca072c672b1f3d040358a9.zip |
psl: keep denoting names in the PSL ast.
Diffstat (limited to 'src/psl/psl-prints.adb')
-rw-r--r-- | src/psl/psl-prints.adb | 4 |
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 |