From: Eddie Hung Date: Fri, 14 Jun 2019 17:11:34 +0000 (-0700) Subject: Remove extra semicolon X-Git-Tag: working-ls180~1237^2~123 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a5425a2f7e86f63ee4df84d15bf58fb9f006b465;p=yosys.git Remove extra semicolon --- diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc index a6ec4a6fb..d90b421a8 100644 --- a/passes/techmap/abc9.cc +++ b/passes/techmap/abc9.cc @@ -395,7 +395,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *current_module, std::stri //log("Extracted %d gates and %d wires to a netlist network with %d inputs and %d outputs.\n", // count_gates, GetSize(signal_list), count_input, count_output); - Pass::call(design, stringf("write_xaiger -map %s/input.sym %s/input.xaig; ", tempdir_name.c_str(), tempdir_name.c_str())); + Pass::call(design, stringf("write_xaiger -map %s/input.sym %s/input.xaig", tempdir_name.c_str(), tempdir_name.c_str())); std::string buffer; std::ifstream ifs;