diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/synth/synth-vhdl_stmts.adb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/synth/synth-vhdl_stmts.adb b/src/synth/synth-vhdl_stmts.adb index 9710efb4b..d827311e2 100644 --- a/src/synth/synth-vhdl_stmts.adb +++ b/src/synth/synth-vhdl_stmts.adb @@ -3617,10 +3617,10 @@ package body Synth.Vhdl_Stmts is end case; Config := Get_Prev_Block_Configuration (Config); end loop; - if Config = Null_Node then - raise Internal_Error; + -- There is no block configuration in vunits (yet). + if Config /= Null_Node then + Apply_Block_Configuration (Config, Bod); end if; - Apply_Block_Configuration (Config, Bod); end; -- FIXME: get position ? |