aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-10-31 18:27:26 +0100
committerTristan Gingold <tgingold@free.fr>2019-10-31 18:27:26 +0100
commit3e4ee32b168cdd4775ee8f33e40e89fb3b153997 (patch)
tree86511cabe7e3fc1a4d86a89790a90df1193bb1ee
parent53a1888639b7a265b6f681196656606633d4faa7 (diff)
downloadghdl-3e4ee32b168cdd4775ee8f33e40e89fb3b153997.tar.gz
ghdl-3e4ee32b168cdd4775ee8f33e40e89fb3b153997.tar.bz2
ghdl-3e4ee32b168cdd4775ee8f33e40e89fb3b153997.zip
vhdl-prints: handle more constructs in psl vunit.
-rw-r--r--src/vhdl/vhdl-prints.adb5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vhdl/vhdl-prints.adb b/src/vhdl/vhdl-prints.adb
index ddcc888aa..f71978ba8 100644
--- a/src/vhdl/vhdl-prints.adb
+++ b/src/vhdl/vhdl-prints.adb
@@ -4383,6 +4383,11 @@ package body Vhdl.Prints is
| Iir_Kind_Procedure_Body =>
Disp_Subprogram_Body (Ctxt, Expr);
+ when Iir_Kind_Attribute_Declaration =>
+ Disp_Attribute_Declaration (Ctxt, Expr);
+ when Iir_Kind_Attribute_Specification =>
+ Disp_Attribute_Specification (Ctxt, Expr);
+
when Iir_Kind_Signature =>
Disp_Signature (Ctxt, Expr);