aboutsummaryrefslogtreecommitdiffstats
path: root/backends
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-01-21 16:27:40 -0800
committerEddie Hung <eddie@fpgeh.com>2020-01-21 16:27:40 -0800
commit3d9737c1bd05235b2c32fe9daaaa9004924a6018 (patch)
tree36c965a05ad7e1afc7baf2cf7c46922be2bd1918 /backends
parentcd093c00f84b44662a09d469c2b0d8ba6ecf6f6e (diff)
parent5791c52e1b0c0e52299ee1c293a41d712d782422 (diff)
downloadyosys-3d9737c1bd05235b2c32fe9daaaa9004924a6018.tar.gz
yosys-3d9737c1bd05235b2c32fe9daaaa9004924a6018.tar.bz2
yosys-3d9737c1bd05235b2c32fe9daaaa9004924a6018.zip
Merge remote-tracking branch 'origin/master' into eddie/abc9_refactor
Diffstat (limited to 'backends')
-rw-r--r--backends/edif/edif.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/edif/edif.cc b/backends/edif/edif.cc
index 6735d670f..60a098917 100644
--- a/backends/edif/edif.cc
+++ b/backends/edif/edif.cc
@@ -412,6 +412,8 @@ struct EdifBackend : public Backend {
for (auto &ref : it.second)
log_warning("Exporting x-bit on %s as zero bit.\n", ref.c_str());
sig = RTLIL::State::S0;
+ } else if (sig == RTLIL::State::Sz) {
+ continue;
} else {
for (auto &ref : it.second)
log_error("Don't know how to handle %s on %s.\n", log_signal(sig), ref.c_str());