aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2009-01-01 01:19:59 +0000
committerBill Wendling <isanbard@gmail.com>2009-01-01 01:19:59 +0000
commit94f0a38a000425e1e941a54c56a6268454b37160 (patch)
tree740ca3774e38aeff7e2c5cfe312ac29e77d4e784
parent3479be91c42b7e7b24ea481c3a1591f9231ef1ff (diff)
downloadexternal_llvm-94f0a38a000425e1e941a54c56a6268454b37160.zip
external_llvm-94f0a38a000425e1e941a54c56a6268454b37160.tar.gz
external_llvm-94f0a38a000425e1e941a54c56a6268454b37160.tar.bz2
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61538 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Transforms/Scalar/InstructionCombining.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/InstructionCombining.cpp b/lib/Transforms/Scalar/InstructionCombining.cpp
index 9e45193..39c48c3 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<BinaryOperator>(Op0);
if (Op0I) {