Fix TXQ not using the component mask.

This commit is contained in:
Fernando Sahmkow 2019-02-03 17:07:20 -04:00 committed by FernandoS27
parent b0b027d2d0
commit 0306c50339
2 changed files with 13 additions and 6 deletions

View file

@ -981,6 +981,10 @@ union Instruction {
}
return false;
}
bool IsComponentEnabled(std::size_t component) const {
return ((1ul << component) & component_mask) != 0;
}
} txq;
union {