aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-builders.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-12 20:06:28 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-12 20:36:03 +0100
commit97c875c15734f991e1c7b190385def8f0b587538 (patch)
treeea0a837dc526d2bc147da536c62544220c94c6ea /src/synth/netlists-builders.adb
parent159ba3c92b646fa66a484514078d154068fa5d43 (diff)
downloadghdl-97c875c15734f991e1c7b190385def8f0b587538.tar.gz
ghdl-97c875c15734f991e1c7b190385def8f0b587538.tar.bz2
ghdl-97c875c15734f991e1c7b190385def8f0b587538.zip
netlists: initial support of net of width 0.
Diffstat (limited to 'src/synth/netlists-builders.adb')
-rw-r--r--src/synth/netlists-builders.adb2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/synth/netlists-builders.adb b/src/synth/netlists-builders.adb
index a764cad1a..48ebe51c2 100644
--- a/src/synth/netlists-builders.adb
+++ b/src/synth/netlists-builders.adb
@@ -858,7 +858,6 @@ package body Netlists.Builders is
I0, I1 : Net) return Net
is
Wd : constant Width := Get_Width (I1);
- pragma Assert (Wd /= No_Width);
pragma Assert (I0 = No_Net or else Get_Width (I0) = Wd);
pragma Assert (Get_Width (Sel) = 1);
Inst : Instance;
@@ -1223,7 +1222,6 @@ package body Netlists.Builders is
D : Net) return Net
is
Wd : constant Width := Get_Width (D);
- pragma Assert (Wd /= No_Width);
pragma Assert (Get_Width (Clk) = 1);
Inst : Instance;
O : Net;