diff options
-rw-r--r-- | src/synth/netlists-builders.adb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/synth/netlists-builders.adb b/src/synth/netlists-builders.adb index 98647c193..eb1b984bb 100644 --- a/src/synth/netlists-builders.adb +++ b/src/synth/netlists-builders.adb @@ -1072,7 +1072,6 @@ package body Netlists.Builders is return Net is Wd : constant Width := Get_Width (Mem); - pragma Assert (Wd /= No_Width); Inst : Instance; O : Net; begin @@ -1114,7 +1113,7 @@ package body Netlists.Builders is (Ctxt : Context_Acc; I : Net; Step : Uns32; Max : Uns32; W : Width) return Net is - pragma Assert (Step > 0); + -- Note: step could be 0. Inst : Instance; O : Net; begin |