aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs
diff options
context:
space:
mode:
Diffstat (limited to 'techlibs')
-rw-r--r--techlibs/ecp5/synth_ecp5.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/techlibs/ecp5/synth_ecp5.cc b/techlibs/ecp5/synth_ecp5.cc
index 0e49ef01a..c13020cc1 100644
--- a/techlibs/ecp5/synth_ecp5.cc
+++ b/techlibs/ecp5/synth_ecp5.cc
@@ -348,10 +348,10 @@ struct SynthEcp5Pass : public ScriptPass
else
abc9_opts += stringf(" -W %s", RTLIL::constpad.at(k).c_str());
if (nowidelut)
- abc9_args += " -maxlut 4";
+ abc9_opts += " -maxlut 4";
if (dff)
- abc9_args += " -dff";
- run("abc9" + abc9_args);
+ abc9_opts += " -dff";
+ run("abc9" + abc9_opts);
run("techmap -map +/ecp5/abc9_unmap.v");
} else {
std::string abc_args = " -dress";