Fix comment.
authorBill Wendling <isanbard@gmail.com>
Thu, 1 Jan 2009 01:19:59 +0000 (01:19 +0000)
committerBill Wendling <isanbard@gmail.com>
Thu, 1 Jan 2009 01:19:59 +0000 (01:19 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61538 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/Scalar/InstructionCombining.cpp

index 9e451934ed182850a4eae34f3b6a07570b77197f..39c48c3b438e78668f3148543ad2709ca450b34f 100644 (file)
@@ -4889,7 +4889,7 @@ Instruction *InstCombiner::visitXor(BinaryOperator &I) {
       //   Let C = (or A, B)
       //   C true implies that either A, B, or both are true.
       //
-      //   (xor C, true) is true only if C is false. We can the apply de
+      //   (xor C, true) is true only if C is false. We can then apply de
       //   Morgan's law. QED.
       BinaryOperator *Op0I = dyn_cast<BinaryOperator>(Op0);
       if (Op0I) {