diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-09 14:29:58 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-09 14:29:58 -0700 |
commit | c55530b90197302e7c27eb106094fa74a178fc67 (patch) | |
tree | 1ec92b4f01b10f3ea439e0346345ba23a2ff23a9 /techlibs/xilinx | |
parent | 5b48b18d29dabfaa3aa51fc4946f14b0ea8954e2 (diff) | |
download | yosys-c55530b90197302e7c27eb106094fa74a178fc67.tar.gz yosys-c55530b90197302e7c27eb106094fa74a178fc67.tar.bz2 yosys-c55530b90197302e7c27eb106094fa74a178fc67.zip |
Restore opt_clean back to original place
Diffstat (limited to 'techlibs/xilinx')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 7e10a392a..c4877c8af 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -260,6 +260,7 @@ struct SynthXilinxPass : public ScriptPass run("fsm"); run("opt -fast"); run("memory -nomap"); + run("opt_clean"); if (widemux > 0 || help_mode) run("muxpack", " ('-widemux' only)"); @@ -270,8 +271,6 @@ struct SynthXilinxPass : public ScriptPass // Also: wide multiplexer inference benefits from this too if (!(nosrl && widemux == 0) || help_mode) run("pmux2shiftx", "(skip if '-nosrl' and '-widemux=0')"); - - run("opt_clean"); } if (check_label("bram", "(skip if '-nobram')")) { |