aboutsummaryrefslogtreecommitdiffstats
path: root/src/simul/simul-vhdl_elab.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2023-01-01 18:37:47 +0100
committerTristan Gingold <tgingold@free.fr>2023-01-01 18:37:47 +0100
commit4ac2b03fb79b40080dd3ae22788e543245eb0c28 (patch)
treeab1de633317dbb0f9c94e6545cdbc4bf7f759651 /src/simul/simul-vhdl_elab.adb
parentb1542388032e3a1e4bdfdfe0ff42a2c8caad4e33 (diff)
downloadghdl-4ac2b03fb79b40080dd3ae22788e543245eb0c28.tar.gz
ghdl-4ac2b03fb79b40080dd3ae22788e543245eb0c28.tar.bz2
ghdl-4ac2b03fb79b40080dd3ae22788e543245eb0c28.zip
simul: handle nested packages
Diffstat (limited to 'src/simul/simul-vhdl_elab.adb')
-rw-r--r--src/simul/simul-vhdl_elab.adb6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/simul/simul-vhdl_elab.adb b/src/simul/simul-vhdl_elab.adb
index 3f4d0af4f..8ac6c65cf 100644
--- a/src/simul/simul-vhdl_elab.adb
+++ b/src/simul/simul-vhdl_elab.adb
@@ -444,9 +444,13 @@ package body Simul.Vhdl_Elab is
| Iir_Kind_Group_Declaration =>
null;
- when Iir_Kind_Package_Instantiation_Declaration =>
+ when Iir_Kind_Package_Instantiation_Declaration
+ | Iir_Kind_Package_Declaration =>
-- TODO: signals in package ?
null;
+ when Iir_Kind_Package_Body =>
+ null;
+
when others =>
Error_Kind ("gather_processes_decl", Decl);
end case;