mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-13 04:28:18 +00:00
intel_synth: Minor code cleanups
Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
This commit is contained in:
parent
e66e8fb59d
commit
060e77c09b
|
@ -147,8 +147,12 @@ struct SynthIntelPass : public ScriptPass {
|
||||||
|
|
||||||
if (!design->full_selection())
|
if (!design->full_selection())
|
||||||
log_cmd_error("This command only operates on fully selected designs!\n");
|
log_cmd_error("This command only operates on fully selected designs!\n");
|
||||||
if (family_opt != "max10" && family_opt != "a10gx" && family_opt != "cyclonev" && family_opt != "cycloneiv" &&
|
if (family_opt != "max10" &&
|
||||||
family_opt != "cycloneive" && family_opt != "cyclone10")
|
family_opt != "a10gx" &&
|
||||||
|
family_opt != "cyclonev" &&
|
||||||
|
family_opt != "cycloneiv" &&
|
||||||
|
family_opt != "cycloneive" &&
|
||||||
|
family_opt != "cyclone10")
|
||||||
log_cmd_error("Invalid or not family specified: '%s'\n", family_opt.c_str());
|
log_cmd_error("Invalid or not family specified: '%s'\n", family_opt.c_str());
|
||||||
|
|
||||||
log_header(design, "Executing SYNTH_INTEL pass.\n");
|
log_header(design, "Executing SYNTH_INTEL pass.\n");
|
||||||
|
|
Loading…
Reference in a new issue