From: Michael Christensen Date: Tue, 27 Apr 2021 09:29:52 +0000 (-0700) Subject: Fix use of blif name in synth_xilinx command X-Git-Tag: yosys-0.10~215^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=67d6f3973b5dc3f017b24eb43950707e99b10dff;p=yosys.git Fix use of blif name in synth_xilinx command --- diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 80d120fe1..1fd2d4f8b 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -672,7 +672,7 @@ struct SynthXilinxPass : public ScriptPass if (check_label("blif")) { if (!blif_file.empty() || help_mode) - run(stringf("write_blif %s", edif_file.c_str())); + run(stringf("write_blif %s", blif_file.c_str())); } } } SynthXilinxPass;