diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-31 18:27:26 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-31 18:27:26 +0100 |
commit | 3e4ee32b168cdd4775ee8f33e40e89fb3b153997 (patch) | |
tree | 86511cabe7e3fc1a4d86a89790a90df1193bb1ee | |
parent | 53a1888639b7a265b6f681196656606633d4faa7 (diff) | |
download | ghdl-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.adb | 5 |
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); |