diff options
Diffstat (limited to 'src/synth')
-rw-r--r-- | src/synth/synth-inference.adb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/synth/synth-inference.adb b/src/synth/synth-inference.adb index 4c4b95c5f..270c944fa 100644 --- a/src/synth/synth-inference.adb +++ b/src/synth/synth-inference.adb @@ -389,7 +389,9 @@ package body Synth.Inference is Last_Out := O; while Is_Connected (Last_Out) loop - if not Has_One_Connection (Last_Out) then + if not Has_One_Connection (Last_Out) + and then not Is_Const_Net (Last_Out) + then -- TODO. raise Internal_Error; end if; |