diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/synth-vhdl_stmts.adb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/synth/synth-vhdl_stmts.adb b/src/synth/synth-vhdl_stmts.adb index 89c96012a..ddf579656 100644 --- a/src/synth/synth-vhdl_stmts.adb +++ b/src/synth/synth-vhdl_stmts.adb @@ -3283,10 +3283,16 @@ package body Synth.Vhdl_Stmts is S := Get_Next_State (S); end loop; + -- Maybe there is no edge to the first state (common for restrict). if D_Arr (Nbr_States - 1) = No_Net then D_Arr (Nbr_States - 1) := Build_Const_UB32 (Ctxt, 0, 1); end if; + -- Maybe there is no edge to the final state. + if D_Arr (0) = No_Net then + D_Arr (0) := Build_Const_UB32 (Ctxt, 0, 1); + end if; + Concat_Array (Ctxt, D_Arr.all, Res); Free_Net_Array (D_Arr); |