Remove extra semicolon
authorEddie Hung <eddie@fpgeh.com>
Fri, 14 Jun 2019 17:11:34 +0000 (10:11 -0700)
committerEddie Hung <eddie@fpgeh.com>
Fri, 14 Jun 2019 17:11:34 +0000 (10:11 -0700)
passes/techmap/abc9.cc

index a6ec4a6fb3646ddf54a8dd5c652f81c97a7dc93e..d90b421a8dc540226442f41ce62cc624c7847b96 100644 (file)
@@ -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;