mirror of https://github.com/YosysHQ/yosys.git
Fix pmux2shiftx logic
This commit is contained in:
parent
23a73ca624
commit
5afa42432f
|
@ -229,7 +229,7 @@ struct SynthXilinxPass : public ScriptPass
|
|||
// cells for identifying variable-length shift registers,
|
||||
// so attempt to convert $pmux-es to the former
|
||||
// Also: wide multiplexer inference benefits from this too
|
||||
if ((!nosrl && !nomux) || help_mode)
|
||||
if (!(nosrl && nomux) || help_mode)
|
||||
run("pmux2shiftx", "(skip if '-nosrl' and '-nomux')");
|
||||
|
||||
// Run a number of peephole optimisations, including one
|
||||
|
|
Loading…
Reference in New Issue