From: Clifford Wolf Date: Fri, 16 Aug 2019 08:36:11 +0000 (+0200) Subject: Add missing NMUX to "abc -g" handling X-Git-Tag: working-ls180~1141 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bb37a20e8de55c1145af7c611eb657891d8825fb;p=yosys.git Add missing NMUX to "abc -g" handling Signed-off-by: Clifford Wolf --- diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc index 20ebc73c8..58e517e09 100644 --- a/passes/techmap/abc.cc +++ b/passes/techmap/abc.cc @@ -1630,6 +1630,7 @@ struct AbcPass : public Pass { if (g == "ANDNOT") goto ok_gate; if (g == "ORNOT") goto ok_gate; if (g == "MUX") goto ok_gate; + if (g == "NMUX") goto ok_gate; if (g == "AOI3") goto ok_gate; if (g == "OAI3") goto ok_gate; if (g == "AOI4") goto ok_gate;