diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-09-08 18:54:58 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-09-08 18:54:58 +0200 |
commit | de68a6b6b024d438f2242e2fddb7dd29cca59f3b (patch) | |
tree | cfb19c2fc0840e3677ccb0df977f0e480bf738c7 /src/synth/elab-vhdl_context.adb | |
parent | 40af9a7fa56c429669c5fbe7553ba7c46e2d4fa3 (diff) | |
download | ghdl-de68a6b6b024d438f2242e2fddb7dd29cca59f3b.tar.gz ghdl-de68a6b6b024d438f2242e2fddb7dd29cca59f3b.tar.bz2 ghdl-de68a6b6b024d438f2242e2fddb7dd29cca59f3b.zip |
simul: add support for protected objects
Diffstat (limited to 'src/synth/elab-vhdl_context.adb')
-rw-r--r-- | src/synth/elab-vhdl_context.adb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/synth/elab-vhdl_context.adb b/src/synth/elab-vhdl_context.adb index 248eb6a4f..136cc50f0 100644 --- a/src/synth/elab-vhdl_context.adb +++ b/src/synth/elab-vhdl_context.adb @@ -550,7 +550,8 @@ package body Elab.Vhdl_Context is case Scope.Kind is when Kind_Block | Kind_Frame - | Kind_Process => + | Kind_Process + | Kind_Protected => declare Current : Synth_Instance_Acc; begin |