aboutsummaryrefslogtreecommitdiffstats
path: root/techlibs/xilinx
diff options
context:
space:
mode:
authorEddie Hung <eddie@fpgeh.com>2019-07-09 10:15:02 -0700
committerEddie Hung <eddie@fpgeh.com>2019-07-09 10:15:02 -0700
commit737340327fd8bae4a3b958d85cb14eecb767ed67 (patch)
treeba882104f085550110d1e5fb8072e5789eb9cb8a /techlibs/xilinx
parentbc84f7dd10ad44118fd6d800cb7a896069fd223d (diff)
downloadyosys-737340327fd8bae4a3b958d85cb14eecb767ed67.tar.gz
yosys-737340327fd8bae4a3b958d85cb14eecb767ed67.tar.bz2
yosys-737340327fd8bae4a3b958d85cb14eecb767ed67.zip
Revert "synth_xilinx to call "synth -run coarse" with "-keepdc""
This reverts commit 7f964859ec99500e471853f5914b6e5b7c35a031.
Diffstat (limited to 'techlibs/xilinx')
-rw-r--r--techlibs/xilinx/synth_xilinx.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/techlibs/xilinx/synth_xilinx.cc b/techlibs/xilinx/synth_xilinx.cc
index 2a77ce397..8da6df57e 100644
--- a/techlibs/xilinx/synth_xilinx.cc
+++ b/techlibs/xilinx/synth_xilinx.cc
@@ -240,9 +240,9 @@ struct SynthXilinxPass : public ScriptPass
if (check_label("coarse")) {
if (help_mode)
- run("synth -keepdc -run coarse [-flatten]", "(with '-flatten')");
+ run("synth -run coarse [-flatten]", "(with '-flatten')");
else
- run("synth -keepdc -run coarse" + std::string(flatten ? "" : " -flatten"), "(with '-flatten')");
+ run("synth -run coarse" + std::string(flatten ? "" : " -flatten"), "(with '-flatten')");
if (widemux > 0 || help_mode)
run("muxpack", " ('-widemux' only)");