mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-23 22:33:41 +00:00
Error out if -abc9 and -retime specified
This commit is contained in:
parent
27b27b8781
commit
6bbd286e03
3 changed files with 15 additions and 6 deletions
|
@ -199,6 +199,9 @@ struct SynthEcp5Pass : public ScriptPass
|
|||
if (!design->full_selection())
|
||||
log_cmd_error("This command only operates on fully selected designs!\n");
|
||||
|
||||
if (abc9 && retime)
|
||||
log_cmd_error("-retime option not currently compatible with -abc9!\n");
|
||||
|
||||
log_header(design, "Executing SYNTH_ECP5 pass.\n");
|
||||
log_push();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue