aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap/abc9.cc
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-01-09 17:35:13 -0800
committerEddie Hung <eddie@fpgeh.com>2020-01-09 17:35:13 -0800
commit32946a402de068ba052e0af9564959cf746fbf91 (patch)
tree72c0d9e0fa2c7d8264f2a2d5e1ee2cc2b0ba3e23 /passes/techmap/abc9.cc
parentca70f9650336b4e58a13ab119e098f6494549f27 (diff)
downloadyosys-32946a402de068ba052e0af9564959cf746fbf91.tar.gz
yosys-32946a402de068ba052e0af9564959cf746fbf91.tar.bz2
yosys-32946a402de068ba052e0af9564959cf746fbf91.zip
abc9: start post-fix with semicolon
Diffstat (limited to 'passes/techmap/abc9.cc')
-rw-r--r--passes/techmap/abc9.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc
index 7039d4dd8..fb0c547a3 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -308,7 +308,7 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *module, std::string scrip
for (size_t pos = abc9_script.find("&mfs"); pos != std::string::npos; pos = abc9_script.find("&mfs", pos))
abc9_script = abc9_script.erase(pos, strlen("&mfs"));
- abc9_script += stringf("&ps -l; &write -n %s/output.aig; time", tempdir_name.c_str());
+ abc9_script += stringf("; &ps -l; &write -n %s/output.aig; time", tempdir_name.c_str());
abc9_script = add_echos_to_abc9_cmd(abc9_script);
for (size_t i = 0; i+1 < abc9_script.size(); i++)