Merge pull request #2738 from mdko/xilinx-blif

Fix use of blif name in synth_xilinx command
This commit is contained in:
Miodrag Milanović 2021-04-27 11:46:41 +02:00 committed by GitHub
commit d061b0e41a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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;