diff options
Diffstat (limited to 'src/synth/synth-vhdl_decls.adb')
-rw-r--r-- | src/synth/synth-vhdl_decls.adb | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/src/synth/synth-vhdl_decls.adb b/src/synth/synth-vhdl_decls.adb index ed0a62ace..5c9e62f37 100644 --- a/src/synth/synth-vhdl_decls.adb +++ b/src/synth/synth-vhdl_decls.adb @@ -534,13 +534,14 @@ package body Synth.Vhdl_Decls is if Init.Typ.Kind = Type_Protected then Error_Msg_Synth (Syn_Inst, Decl, "protected type not supported"); Set_Error (Syn_Inst); - else - if Init.Val = null then - Mark_Expr_Pool (Marker); - Init := Create_Value_Default (Init.Typ); - Init := Unshare (Init, Instance_Pool); - Release_Expr_Pool (Marker); - end if; + return; + end if; + + if Init.Val = null then + Mark_Expr_Pool (Marker); + Init := Create_Value_Default (Init.Typ); + Init := Unshare (Init, Instance_Pool); + Release_Expr_Pool (Marker); end if; Val := Create_Var_Wire (Syn_Inst, Decl, Wire_Variable, Init); |