diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-12-18 17:16:57 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-12-18 17:16:57 +0100 |
commit | c0095f3f0c37a2db4d56dc289854252e2e6e67d4 (patch) | |
tree | 6fa51ee45d62cd7af1d181bda4495d00ccb6b484 /src/simul | |
parent | b4f09236ad974a133318d17a8487b36ebc35a78c (diff) | |
download | ghdl-c0095f3f0c37a2db4d56dc289854252e2e6e67d4.tar.gz ghdl-c0095f3f0c37a2db4d56dc289854252e2e6e67d4.tar.bz2 ghdl-c0095f3f0c37a2db4d56dc289854252e2e6e67d4.zip |
vhdl-sem_inst: add instantiate_interface_package_declaration
Diffstat (limited to 'src/simul')
-rw-r--r-- | src/simul/simul-vhdl_elab.adb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/simul/simul-vhdl_elab.adb b/src/simul/simul-vhdl_elab.adb index bb0aac880..5c41511d6 100644 --- a/src/simul/simul-vhdl_elab.adb +++ b/src/simul/simul-vhdl_elab.adb @@ -434,6 +434,10 @@ package body Simul.Vhdl_Elab is | Iir_Kind_Group_Template_Declaration | Iir_Kind_Group_Declaration => null; + + when Iir_Kind_Package_Instantiation_Declaration => + -- TODO: signals in package ? + null; when others => Error_Kind ("gather_processes_decl", Decl); end case; |