aboutsummaryrefslogtreecommitdiffstats
path: root/passes/techmap
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2020-01-11 17:05:30 -0800
committerEddie Hung <eddie@fpgeh.com>2020-01-11 17:05:30 -0800
commit556ed0e18ac00e4ec19e127f33ccf3550be78186 (patch)
treed964356a98c8f00b7298690e5497ea5190120ef0 /passes/techmap
parentc063436eea7182f6c9617a7d54f238b494ad261b (diff)
downloadyosys-556ed0e18ac00e4ec19e127f33ccf3550be78186.tar.gz
yosys-556ed0e18ac00e4ec19e127f33ccf3550be78186.tar.bz2
yosys-556ed0e18ac00e4ec19e127f33ccf3550be78186.zip
MIssed this merge conflict
Diffstat (limited to 'passes/techmap')
-rw-r--r--passes/techmap/abc9.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/passes/techmap/abc9.cc b/passes/techmap/abc9.cc
index bd4e506ac..8a6195741 100644
--- a/passes/techmap/abc9.cc
+++ b/passes/techmap/abc9.cc
@@ -304,10 +304,6 @@ void abc9_module(RTLIL::Design *design, RTLIL::Module *module, std::string scrip
for (size_t pos = abc9_script.find("{R}"); pos != std::string::npos; pos = abc9_script.find("{R}", pos))
abc9_script = abc9_script.substr(0, pos) + R + abc9_script.substr(pos+3);
- if (nomfs)
- 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;", tempdir_name.c_str());
if (design->scratchpad_get_bool("abc9.verify")) {
if (dff_mode)