diff options
author | Craig Topper <craig.topper@intel.com> | 2018-08-13 00:54:23 +0000 |
---|---|---|
committer | Craig Topper <craig.topper@intel.com> | 2018-08-13 00:54:23 +0000 |
commit | 8caccc32b5996f55fecead4e348f6646900456df (patch) | |
tree | 55e1d3d3d70076ab408838e2c2f1f0167af51994 /llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | |
parent | 8bb49218bc9d8db373890df3c07f871e5b20f83b (diff) | |
download | bcm5719-llvm-8caccc32b5996f55fecead4e348f6646900456df.tar.gz bcm5719-llvm-8caccc32b5996f55fecead4e348f6646900456df.zip |
[InstCombine] Fix typo in comment. NFC
llvm-svn: 339532
Diffstat (limited to 'llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp')
-rw-r--r-- | llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp index e36057907c1..a366db4d1e3 100644 --- a/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp +++ b/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp @@ -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; |