aboutsummaryrefslogtreecommitdiffstats
path: root/passes
diff options
context:
space:
mode:
authorClifford Wolf <clifford@clifford.at>2019-05-11 13:56:51 +0200
committerGitHub <noreply@github.com>2019-05-11 13:56:51 +0200
commitfaf00586d811479f486771102ba1a399e6a0f2df (patch)
tree60348a7cdaed48e480daffb9e1fe375461218d44 /passes
parentb66b657b6b161910be8a62d37b2d981d33c9f1e3 (diff)
parent2f5cfa014b4fda75eefdf1499721aae4aabb8419 (diff)
downloadyosys-faf00586d811479f486771102ba1a399e6a0f2df.tar.gz
yosys-faf00586d811479f486771102ba1a399e6a0f2df.tar.bz2
yosys-faf00586d811479f486771102ba1a399e6a0f2df.zip
Merge pull request #1003 from makaimann/zinit-all
Zinit option '-singleton' -> '-all'
Diffstat (limited to 'passes')
-rw-r--r--passes/techmap/zinit.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/passes/techmap/zinit.cc b/passes/techmap/zinit.cc
index b46147fb9..2aefc091d 100644
--- a/passes/techmap/zinit.cc
+++ b/passes/techmap/zinit.cc
@@ -46,7 +46,7 @@ struct ZinitPass : public Pass {
size_t argidx;
for (argidx = 1; argidx < args.size(); argidx++)
{
- if (args[argidx] == "-singleton") {
+ if (args[argidx] == "-all") {
all_mode = true;
continue;
}