Merge remote-tracking branch 'origin/eddie/fix1132' into xc7mux

This commit is contained in:
Eddie Hung 2019-06-26 17:16:11 -07:00
commit f66be9433f
1 changed files with 1 additions and 1 deletions

View File

@ -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);