aboutsummaryrefslogtreecommitdiffstats
path: root/passes/sat/formalff.cc
diff options
context:
space:
mode:
authorClaire Xenia Wolf <claire@clairexen.net>2022-12-01 11:31:39 +0100
committerClaire Xenia Wolf <claire@clairexen.net>2022-12-01 11:31:39 +0100
commit956b7f5fd1739f8571da5c02055c64a9d911780c (patch)
tree7530783b4eb40ab78e22e1d9fbbc1c849158ed65 /passes/sat/formalff.cc
parentfbf8bcf38f4cc6ea11f4b6461531deb17bd9765c (diff)
parenteb0039848b42afa196f440301492a5afc09b4cf4 (diff)
downloadyosys-956b7f5fd1739f8571da5c02055c64a9d911780c.tar.gz
yosys-956b7f5fd1739f8571da5c02055c64a9d911780c.tar.bz2
yosys-956b7f5fd1739f8571da5c02055c64a9d911780c.zip
Merge branch 'xprop' of github.com:jix/yosys into claire/eqystuff
Diffstat (limited to 'passes/sat/formalff.cc')
-rw-r--r--passes/sat/formalff.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/passes/sat/formalff.cc b/passes/sat/formalff.cc
index 209486a37..b2a91b155 100644
--- a/passes/sat/formalff.cc
+++ b/passes/sat/formalff.cc
@@ -529,12 +529,14 @@ struct FormalFfPass : public Pass {
if ((int)bits.size() == ff.val_init.size()) {
// This check is only to make the private names more helpful for debugging
ff.is_anyinit = true;
+ ff.is_fine = false;
emit = true;
break;
}
auto slice = ff.slice(bits);
slice.is_anyinit = is_anyinit;
+ slice.is_fine = false;
slice.emit();
}
}