Fix use of blif name in synth_xilinx command

This commit is contained in:
Michael Christensen 2021-04-27 02:29:52 -07:00
parent 86a6ac7623
commit 67d6f3973b
1 changed files with 1 additions and 1 deletions

View File

@ -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;