[InstCombine] Fix typo in comment. NFC

llvm-svn: 339532
This commit is contained in:
Craig Topper 2018-08-13 00:54:23 +00:00
parent 8bb49218bc
commit 8caccc32b5
1 changed files with 1 additions and 1 deletions

View File

@ -2510,7 +2510,7 @@ Instruction *InstCombiner::visitXor(BinaryOperator &I) {
Value *Op0 = I.getOperand(0), *Op1 = I.getOperand(1);
// Fold (X & M) ^ (Y & ~M) -> (X & M) | (Y & ~M)
// This it a special case in haveNoCommonBitsSet, but the commputeKnownBits
// This it a special case in haveNoCommonBitsSet, but the computeKnownBits
// calls in there are unnecessary as SimplifyDemandedInstructionBits should
// have already taken care of those cases.
Value *M;