From 0fcff2c2032a090fe4e4dc0051d994dc546b051a Mon Sep 17 00:00:00 2001 From: Bill Wendling Date: Thu, 1 Jan 2009 01:19:59 +0000 Subject: [PATCH] Fix comment. llvm-svn: 61538 --- llvm/lib/Transforms/Scalar/InstructionCombining.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp b/llvm/lib/Transforms/Scalar/InstructionCombining.cpp index 9e451934ed18..39c48c3b438e 100644 --- a/llvm/lib/Transforms/Scalar/InstructionCombining.cpp +++ b/llvm/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) {