aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-06-04 16:36:55 +0200
committerTristan Gingold <tgingold@free.fr>2022-06-04 18:55:56 +0200
commit467f6d66017b73496cef8b5212385c3b407a722f (patch)
tree868d59c252ed3bcbf652ed4054f1602d84eb48ce
parent78c4f520846c2d1dd4fbe02f9f18e6059307e06d (diff)
downloadghdl-467f6d66017b73496cef8b5212385c3b407a722f.tar.gz
ghdl-467f6d66017b73496cef8b5212385c3b407a722f.tar.bz2
ghdl-467f6d66017b73496cef8b5212385c3b407a722f.zip
synth-vhdl_decls: fix subtype conversion for variable default value.
Fix #2072
-rw-r--r--src/synth/synth-vhdl_decls.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/synth-vhdl_decls.adb b/src/synth/synth-vhdl_decls.adb
index 2ae34bb36..96339dfcd 100644
--- a/src/synth/synth-vhdl_decls.adb
+++ b/src/synth/synth-vhdl_decls.adb
@@ -400,7 +400,7 @@ package body Synth.Vhdl_Decls is
if Is_Valid (Def) then
Init := Synth_Expression_With_Type (Syn_Inst, Def, Obj_Typ);
Init := Synth_Subtype_Conversion
- (Ctxt, Init, Obj_Typ, False, Decl);
+ (Ctxt, Init, Obj_Typ, True, Decl);
if not Is_Subprg
and then not Is_Static (Init.Val)
then