aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTobias Faller <faller@endiio.com>2021-01-12 16:17:51 +0100
committerTobias Faller <faller@endiio.com>2021-01-12 16:17:51 +0100
commit760a2c1343f21b5d3e1a09fdf48c0fac88c8fc7a (patch)
tree8721d08c2413119db924f194c94cdb4cbe2f92c1
parentb0004911ca15ec41db56c76c83461061fedc742e (diff)
downloadyosys-760a2c1343f21b5d3e1a09fdf48c0fac88c8fc7a.tar.gz
yosys-760a2c1343f21b5d3e1a09fdf48c0fac88c8fc7a.tar.bz2
yosys-760a2c1343f21b5d3e1a09fdf48c0fac88c8fc7a.zip
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()));