[Hexagon] Remove incorrect bit negation

llvm-svn: 351956
This commit is contained in:
Krzysztof Parzyszek 2019-01-23 15:36:33 +00:00
parent 4ebed81fc4
commit 036715408a
1 changed files with 1 additions and 1 deletions

View File

@ -2424,7 +2424,7 @@ bool HexagonInstrInfo::isPredicated(unsigned Opcode) const {
bool HexagonInstrInfo::isPredicateLate(unsigned Opcode) const { bool HexagonInstrInfo::isPredicateLate(unsigned Opcode) const {
const uint64_t F = get(Opcode).TSFlags; const uint64_t F = get(Opcode).TSFlags;
return ~(F >> HexagonII::PredicateLatePos) & HexagonII::PredicateLateMask; return (F >> HexagonII::PredicateLatePos) & HexagonII::PredicateLateMask;
} }
bool HexagonInstrInfo::isPredictedTaken(unsigned Opcode) const { bool HexagonInstrInfo::isPredictedTaken(unsigned Opcode) const {