aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/translate/trans-rtis.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-12-05 03:17:52 +0100
committerTristan Gingold <tgingold@free.fr>2016-12-05 03:25:22 +0100
commit5d3ea061ee2741422f7946c62edf65b58fccce48 (patch)
treeec0cce96e2dbd44b479daea0c1587c447f6bb47c /src/vhdl/translate/trans-rtis.adb
parent0a7fc14d1cb3fe7bb465102e5c27f1efbd54d511 (diff)
downloadghdl-5d3ea061ee2741422f7946c62edf65b58fccce48.tar.gz
ghdl-5d3ea061ee2741422f7946c62edf65b58fccce48.tar.bz2
ghdl-5d3ea061ee2741422f7946c62edf65b58fccce48.zip
vhdl08: support top-level macro-expanded package instantiation declarations.
Fixes #199
Diffstat (limited to 'src/vhdl/translate/trans-rtis.adb')
-rw-r--r--src/vhdl/translate/trans-rtis.adb11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/vhdl/translate/trans-rtis.adb b/src/vhdl/translate/trans-rtis.adb
index 672ef9b5b..7623b5032 100644
--- a/src/vhdl/translate/trans-rtis.adb
+++ b/src/vhdl/translate/trans-rtis.adb
@@ -2606,7 +2606,8 @@ package body Trans.Rtis is
Field_Off := O_Cnode_Null;
case Get_Kind (Blk) is
- when Iir_Kind_Package_Declaration =>
+ when Iir_Kind_Package_Declaration
+ | Iir_Kind_Package_Instantiation_Declaration =>
Kind := Ghdl_Rtik_Package;
Generate_Declaration_Chain (Get_Declaration_Chain (Blk), Rti);
when Iir_Kind_Package_Body =>
@@ -2747,7 +2748,8 @@ package body Trans.Rtis is
when Iir_Kind_Process_Statement
| Iir_Kind_Sensitized_Process_Statement =>
Info.Process_Rti_Const := Rti;
- when Iir_Kind_Package_Declaration =>
+ when Iir_Kind_Package_Declaration
+ | Iir_Kind_Package_Instantiation_Declaration =>
Info.Package_Rti_Const := Rti;
when Iir_Kind_Package_Body =>
-- Replace package declaration RTI with the body one.
@@ -2861,8 +2863,9 @@ package body Trans.Rtis is
-- Compute parent RTI.
case Get_Kind (Lib_Unit) is
when Iir_Kind_Package_Declaration
- | Iir_Kind_Entity_Declaration
- | Iir_Kind_Configuration_Declaration =>
+ | Iir_Kind_Entity_Declaration
+ | Iir_Kind_Configuration_Declaration
+ | Iir_Kind_Package_Instantiation_Declaration =>
-- The library.
declare
Lib : Iir_Library_Declaration;