projects
/
yosys.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5087d1c
)
Remove redundant check (done further down)
author
Eddie Hung
<eddie@fpgeh.com>
Thu, 27 Jun 2019 00:13:56 +0000
(17:13 -0700)
committer
Eddie Hung
<eddie@fpgeh.com>
Thu, 27 Jun 2019 00:13:56 +0000
(17:13 -0700)
passes/techmap/muxcover.cc
patch
|
blob
|
history
diff --git
a/passes/techmap/muxcover.cc
b/passes/techmap/muxcover.cc
index ce9d145d476b1cfb29b529de8e7f24685e07825f..b162fae2297d385edd4a70165ad00afd041b7c18 100644
(file)
--- a/
passes/techmap/muxcover.cc
+++ b/
passes/techmap/muxcover.cc
@@
-160,7
+160,7
@@
struct MuxcoverWorker
int prepare_decode_mux(SigBit &A, SigBit B, SigBit sel, SigBit bit)
{
- if (A == B || sel == State::Sx
|| A == State::Sx || B == State::Sx
)
+ if (A == B || sel == State::Sx)
return 0;
tuple<SigBit, SigBit, SigBit> key(A, B, sel);