[InstCombine] Fix typo in comment. NFC
authorCraig Topper <craig.topper@intel.com>
Mon, 13 Aug 2018 00:54:23 +0000 (00:54 +0000)
committerCraig Topper <craig.topper@intel.com>
Mon, 13 Aug 2018 00:54:23 +0000 (00:54 +0000)
llvm-svn: 339532

llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp

index e360579..a366db4 100644 (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;