projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
87db41a
)
Fix check logic in extract_fa
author
Miodrag Milanovic
<mmicko@gmail.com>
Tue, 16 Jul 2019 08:35:18 +0000
(10:35 +0200)
committer
Miodrag Milanovic
<mmicko@gmail.com>
Tue, 16 Jul 2019 08:35:18 +0000
(10:35 +0200)
passes/techmap/extract_fa.cc
patch
|
blob
|
history
diff --git
a/passes/techmap/extract_fa.cc
b/passes/techmap/extract_fa.cc
index 8de57e769091be7b1c2281f452a5774b24b3e6e3..591bc43dd5651ee4cfcbf076706f27a4f88b5647 100644
(file)
--- a/
passes/techmap/extract_fa.cc
+++ b/
passes/techmap/extract_fa.cc
@@
-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;
}