3
0
Fork 0
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:
Eddie Hung 2019-07-10 12:47:48 -07:00
parent 27b27b8781
commit 6bbd286e03
3 changed files with 15 additions and 6 deletions

View file

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