From: Tobias Faller Date: Tue, 12 Jan 2021 15:17:51 +0000 (+0100) Subject: Fixed missing goto statement in passes/techmap/abc.cc X-Git-Tag: working-ls180~119^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=760a2c1343f21b5d3e1a09fdf48c0fac88c8fc7a;p=yosys.git Fixed missing goto statement in passes/techmap/abc.cc --- 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()));