aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2021-01-20 20:42:02 +0100
committerGitHub <noreply@github.com>2021-01-20 20:42:02 +0100
commitbfa353f154b3a72fca667b7da1a3e2ec15099a30 (patch)
tree4b5660436a5ac95f8b7c3f2b3541ba000c5eb6f6
parent00f02e05899550be0d6e2154faa30546eefd4c31 (diff)
parent760a2c1343f21b5d3e1a09fdf48c0fac88c8fc7a (diff)
downloadyosys-bfa353f154b3a72fca667b7da1a3e2ec15099a30.tar.gz
yosys-bfa353f154b3a72fca667b7da1a3e2ec15099a30.tar.bz2
yosys-bfa353f154b3a72fca667b7da1a3e2ec15099a30.zip
Merge pull request #2536 from TobiasFaller/master
Fixed missing goto statement in passes/techmap/abc.cc
-rw-r--r--passes/techmap/abc.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/passes/techmap/abc.cc b/passes/techmap/abc.cc
index 192e39372..cf51d7f4b 100644
--- a/passes/techmap/abc.cc
+++ b/passes/techmap/abc.cc
@@ -1794,6 +1794,7 @@ struct AbcPass : public Pass {
gate_list.push_back("OAI4");
gate_list.push_back("MUX");
gate_list.push_back("NMUX");
+ goto ok_alias;
}
if (g_arg_from_cmd)
cmd_error(args, g_argidx, stringf("Unsupported gate type: %s", g.c_str()));