diff options
author | Tristan Gingold | 2014-06-26 07:56:54 +0200 |
---|---|---|
committer | Tristan Gingold | 2014-06-26 07:56:54 +0200 |
commit | 7fe7bdb1b5b0250c213526208a03445f58fba92d (patch) | |
tree | 7e210a0838c15943b6f69d2096bbe2405d68745d /errorout.adb | |
parent | 8b3ec6b7edf3aedbe7084609881571d1603e9621 (diff) | |
download | ghdl-7fe7bdb1b5b0250c213526208a03445f58fba92d.tar.gz ghdl-7fe7bdb1b5b0250c213526208a03445f58fba92d.tar.bz2 ghdl-7fe7bdb1b5b0250c213526208a03445f58fba92d.zip |
add more support for vhdl2008: aliases, visibility and preliminary work for
generic packages.
Diffstat (limited to 'errorout.adb')
-rw-r--r-- | errorout.adb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/errorout.adb b/errorout.adb index cd7f4f7..404c91f 100644 --- a/errorout.adb +++ b/errorout.adb @@ -605,6 +605,12 @@ package body Errorout is & '(' & Iirs_Utils.Image_Identifier (Arch) & ')'; end if; end; + when Iir_Kind_Package_Instantiation_Declaration => + return Disp_Identifier (Node, "instantiation package"); + + when Iir_Kind_Package_Header => + return "package header"; + when Iir_Kind_Component_Declaration => return Disp_Identifier (Node, "component"); |