diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-07-09 09:16:00 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-07-09 09:16:00 -0700 |
commit | 667199d46013d116bdbeb9be8592a77503a470e2 (patch) | |
tree | 5b8ff16804859c52b080362614572fd35887ebff /techlibs/xilinx | |
parent | 6951e3207063f66814e765d7d72e553b8b8eace1 (diff) | |
download | yosys-667199d46013d116bdbeb9be8592a77503a470e2.tar.gz yosys-667199d46013d116bdbeb9be8592a77503a470e2.tar.bz2 yosys-667199d46013d116bdbeb9be8592a77503a470e2.zip |
Fix spacing
Diffstat (limited to 'techlibs/xilinx')
-rw-r--r-- | techlibs/xilinx/synth_xilinx.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc index 6eab74a21..abdf7f9cc 100644 --- a/techlibs/xilinx/synth_xilinx.cc +++ b/techlibs/xilinx/synth_xilinx.cc @@ -287,7 +287,7 @@ struct SynthXilinxPass : public ScriptPass constexpr int cost_mux2 = 100; std::string muxcover_args = stringf(" -nodecode -mux2=%d", cost_mux2); switch (widemux) { - case 2: muxcover_args += stringf(" -mux4=%d -mux8=%d -mux16=%d", cost_mux2+1, cost_mux2+2, cost_mux2+3); break; + case 2: muxcover_args += stringf(" -mux4=%d -mux8=%d -mux16=%d", cost_mux2+1, cost_mux2+2, cost_mux2+3); break; case 3: case 4: muxcover_args += stringf(" -mux4=%d -mux8=%d -mux16=%d", cost_mux2*(widemux-1)-2, cost_mux2*(widemux-1)-1, cost_mux2*(widemux-1)); break; case 5: |