diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp index 9e451934ed1..39c48c3b438 100644 --- a/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/lib/Transforms/Scalar/InstructionCombining.cpp @@ -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(Op0); if (Op0I) {