diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-07 18:13:15 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-09 06:40:12 +0100 |
commit | bb0da07799218cbddc0f4131bc817c4a50be65fd (patch) | |
tree | f88fdf456b3867f30af47eae77495823a4a5435c /src/synth | |
parent | d85cb9909f6bf425cf444341fbea7d8b02c9334b (diff) | |
download | ghdl-bb0da07799218cbddc0f4131bc817c4a50be65fd.tar.gz ghdl-bb0da07799218cbddc0f4131bc817c4a50be65fd.tar.bz2 ghdl-bb0da07799218cbddc0f4131bc817c4a50be65fd.zip |
synth: allow finalization of protected bodies
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-vhdl_decls.adb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/synth-vhdl_decls.adb b/src/synth/synth-vhdl_decls.adb index d1cb3463d..ed0a62ace 100644 --- a/src/synth/synth-vhdl_decls.adb +++ b/src/synth/synth-vhdl_decls.adb @@ -925,6 +925,8 @@ package body Synth.Vhdl_Decls is when Iir_Kind_Attribute_Implicit_Declaration => -- Not supported by synthesis. null; + when Iir_Kind_Protected_Type_Body => + null; when Iir_Kind_Package_Declaration => declare |