1
0
mirror of synced 2026-02-08 17:41:19 +00:00

verilog_backend: Do not run bwmuxmap even if in expr mode

While bwmuxmap generates equivalent logic, it doesn't propagate x bits
in the same way, which can be relevant when writing verilog.
This commit is contained in:
Jannis Harder
2023-02-13 14:00:38 +01:00
parent 6d021f04d4
commit 160eeab2bb

View File

@@ -2329,7 +2329,6 @@ struct VerilogBackend : public Backend {
if (!noexpr) {
Pass::call(design, "bmuxmap");
Pass::call(design, "demuxmap");
Pass::call(design, "bwmuxmap");
}
Pass::call(design, "clean_zerowidth");
log_pop();