diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-06-12 07:47:46 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-06-12 07:47:46 +0200 |
commit | db9c1fd3700995155b2d8a32d929b3d0dc9689e2 (patch) | |
tree | df1d9c6510ba70e6c755f6428c6b902c40fe7b1a /src/synth | |
parent | 967047f328ba8e5a2172ab24200dc6481aa48927 (diff) | |
download | ghdl-db9c1fd3700995155b2d8a32d929b3d0dc9689e2.tar.gz ghdl-db9c1fd3700995155b2d8a32d929b3d0dc9689e2.tar.bz2 ghdl-db9c1fd3700995155b2d8a32d929b3d0dc9689e2.zip |
vhdl: analyze and synth concurrent statements in vunit. Fix #1366
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-stmts.adb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/synth/synth-stmts.adb b/src/synth/synth-stmts.adb index a7b8dc232..cdc5290a4 100644 --- a/src/synth/synth-stmts.adb +++ b/src/synth/synth-stmts.adb @@ -3650,7 +3650,12 @@ package body Synth.Stmts is | Iir_Kind_Attribute_Declaration | Iir_Kind_Attribute_Specification => Synth_Declaration (Unit_Inst, Item, False, Last_Type); - when Iir_Kind_Concurrent_Simple_Signal_Assignment => + when Iir_Kinds_Concurrent_Signal_Assignment + | Iir_Kinds_Process_Statement + | Iir_Kinds_Generate_Statement + | Iir_Kind_Block_Statement + | Iir_Kind_Concurrent_Procedure_Call_Statement + | Iir_Kind_Component_Instantiation_Statement => Synth_Concurrent_Statement (Unit_Inst, Item); when others => Error_Kind ("synth_verification_unit", Item); |