diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-09-25 06:33:18 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-09-25 11:43:28 +0200 |
commit | 548b2ff8d8e1e633853e3e4d25c5a6e0795cb3ee (patch) | |
tree | e22110ecf9652b137cb3f29aca906e64bd924e5f /src/simul | |
parent | 09742fc6ac9ec173e82ebd5eb080474cf129ab32 (diff) | |
download | ghdl-548b2ff8d8e1e633853e3e4d25c5a6e0795cb3ee.tar.gz ghdl-548b2ff8d8e1e633853e3e4d25c5a6e0795cb3ee.tar.bz2 ghdl-548b2ff8d8e1e633853e3e4d25c5a6e0795cb3ee.zip |
synth: ignore groups and group templates
Diffstat (limited to 'src/simul')
-rw-r--r-- | src/simul/simul-vhdl_elab.adb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/simul/simul-vhdl_elab.adb b/src/simul/simul-vhdl_elab.adb index ae8b555ec..1185b3cb7 100644 --- a/src/simul/simul-vhdl_elab.adb +++ b/src/simul/simul-vhdl_elab.adb @@ -304,7 +304,9 @@ package body Simul.Vhdl_Elab is | Iir_Kind_Component_Declaration | Iir_Kind_File_Declaration | Iir_Kind_Protected_Type_Body - | Iir_Kind_Use_Clause => + | Iir_Kind_Use_Clause + | Iir_Kind_Group_Template_Declaration + | Iir_Kind_Group_Declaration => null; when others => Error_Kind ("gather_processes_decl", Decl); |