3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-11 03:33:36 +00:00

Merge pull request #1199 from mmicko/extract_fa_fix

Fix check logic in extract_fa
This commit is contained in:
Clifford Wolf 2019-07-16 15:27:09 +02:00 committed by GitHub
commit 928f0a4438
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -174,7 +174,7 @@ struct ExtractFaWorker
SigSpec sig = root;
if (ce.eval(sig)) {
if (!ce.eval(sig)) {
ce.pop();
return;
}
@ -216,7 +216,7 @@ struct ExtractFaWorker
SigSpec sig = root;
if (ce.eval(sig)) {
if (!ce.eval(sig)) {
ce.pop();
return;
}