diff options
author | Tristan Gingold <tgingold@free.fr> | 2016-09-15 08:05:37 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2016-09-15 08:05:37 +0200 |
commit | 655e52ad5d04e20fcbbd25e9f455a4ed3cd35f97 (patch) | |
tree | fbc05bda91092a5a7865b54b43998b4602ba82f3 /src/vhdl/sem_inst.ads | |
parent | a756fb5de1cdc475537d5c4cfbca52667e054f33 (diff) | |
download | ghdl-655e52ad5d04e20fcbbd25e9f455a4ed3cd35f97.tar.gz ghdl-655e52ad5d04e20fcbbd25e9f455a4ed3cd35f97.tar.bz2 ghdl-655e52ad5d04e20fcbbd25e9f455a4ed3cd35f97.zip |
vhdl08: handle interface type in generic-mapped package
Diffstat (limited to 'src/vhdl/sem_inst.ads')
-rw-r--r-- | src/vhdl/sem_inst.ads | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vhdl/sem_inst.ads b/src/vhdl/sem_inst.ads index da8cd5d27..5da4a8d09 100644 --- a/src/vhdl/sem_inst.ads +++ b/src/vhdl/sem_inst.ads @@ -23,4 +23,8 @@ package Sem_Inst is -- Create declaration chain and generic declarations for INST from PKG. procedure Instantiate_Package_Declaration (Inst : Iir; Pkg : Iir); + + -- In CHAIN, substitute all references to E by REP. + procedure Substitute_On_Chain (Chain : Iir; E : Iir; Rep : Iir); + end Sem_Inst; |