Fix spacing

This commit is contained in:
Eddie Hung 2019-06-26 10:09:18 -07:00
parent cb722e7b58
commit 138989e1a3
1 changed files with 5 additions and 5 deletions

View File

@ -256,11 +256,11 @@ struct SynthXilinxPass : public ScriptPass
if (help_mode) if (help_mode)
run("techmap -map +/techmap.v [-map +/xilinx/arith_map.v]", "(skip if '-nocarry')"); run("techmap -map +/techmap.v [-map +/xilinx/arith_map.v]", "(skip if '-nocarry')");
else if (!nocarry) { else if (!nocarry) {
if (!vpr) if (!vpr)
run("techmap -map +/techmap.v -map +/xilinx/arith_map.v"); run("techmap -map +/techmap.v -map +/xilinx/arith_map.v");
else else
run("techmap -map +/techmap.v -map +/xilinx/arith_map.v -D _EXPLICIT_CARRY"); run("techmap -map +/techmap.v -map +/xilinx/arith_map.v -D _EXPLICIT_CARRY");
} }
run("opt -fast"); run("opt -fast");
} }