aboutsummaryrefslogtreecommitdiffstats
path: root/ecp5/main.cc
diff options
context:
space:
mode:
authorDavid Shah <dave@ds0.me>2019-11-20 17:10:11 +0000
committerDavid Shah <dave@ds0.me>2019-11-20 17:10:11 +0000
commit08cf545d9b8b32eda7998261bdc8a5401432112c (patch)
tree17c1fc27256404f6ada0a7ae6795610204e57b1f /ecp5/main.cc
parent6a7d1fe53d2b55e03ebe3400c0f4c9e5741ed2e1 (diff)
downloadnextpnr-08cf545d9b8b32eda7998261bdc8a5401432112c.tar.gz
nextpnr-08cf545d9b8b32eda7998261bdc8a5401432112c.tar.bz2
nextpnr-08cf545d9b8b32eda7998261bdc8a5401432112c.zip
Revert "Merge pull request #355 from YosysHQ/ecp5-promote-lsr"
This reverts commit 6a7d1fe53d2b55e03ebe3400c0f4c9e5741ed2e1, reversing changes made to c3d4117a219570f0a132ae4f810dec961811311a.
Diffstat (limited to 'ecp5/main.cc')
-rw-r--r--ecp5/main.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/ecp5/main.cc b/ecp5/main.cc
index d1297a95..24a98df4 100644
--- a/ecp5/main.cc
+++ b/ecp5/main.cc
@@ -74,7 +74,6 @@ po::options_description ECP5CommandHandler::getArchOptions()
specific.add_options()(
"out-of-context",
"disable IO buffer insertion and global promotion/routing, for building pre-routed blocks (experimental)");
- specific.add_options()("no-lsr-globals", "don't promote local set/reset (LSR) signals to global networks");
return specific;
}
@@ -240,8 +239,6 @@ std::unique_ptr<Context> ECP5CommandHandler::createContext(std::unordered_map<st
ctx->settings[ctx->id(val.first)] = val.second;
ctx->settings[ctx->id("arch.package")] = ctx->archArgs().package;
ctx->settings[ctx->id("arch.speed")] = speedString(ctx->archArgs().speed);
- if (vm.count("no-lsr-globals"))
- ctx->settings[ctx->id("arch.nolsrglobal")] = 1;
if (vm.count("out-of-context"))
ctx->settings[ctx->id("arch.ooc")] = 1;
return ctx;