summaryrefslogtreecommitdiffstats
path: root/llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
diff options
context:
space:
mode:
authorCraig Topper <craig.topper@intel.com>2018-08-13 00:54:23 +0000
committerCraig Topper <craig.topper@intel.com>2018-08-13 00:54:23 +0000
commit8caccc32b5996f55fecead4e348f6646900456df (patch)
tree55e1d3d3d70076ab408838e2c2f1f0167af51994 /llvm/lib/Transforms/InstCombine/InstCombineAndOrXor.cpp
parent8bb49218bc9d8db373890df3c07f871e5b20f83b (diff)
downloadbcm5719-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.cpp2
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;
OpenPOWER on IntegriCloud