From: Eddie Hung Date: Wed, 13 May 2020 21:12:06 +0000 (-0700) Subject: ecp5: fix rebase mistake X-Git-Tag: working-ls180~549^2~8 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=39759d5f0ec9bfc0db3dd718cb035596da7f9668;p=yosys.git ecp5: fix rebase mistake --- 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";