aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Scalar/InstructionCombining.cpp
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
commitf3fbf7bbcb4e58b574e939916bf6f46736916a7a (patch)
tree740ca3774e38aeff7e2c5cfe312ac29e77d4e784 /lib/Transforms/Scalar/InstructionCombining.cpp
parent61741950d312ac897c077d84bcdbe6fb03385d65 (diff)
downloadexternal_llvm-f3fbf7bbcb4e58b574e939916bf6f46736916a7a.zip
external_llvm-f3fbf7bbcb4e58b574e939916bf6f46736916a7a.tar.gz
external_llvm-f3fbf7bbcb4e58b574e939916bf6f46736916a7a.tar.bz2
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61538 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Scalar/InstructionCombining.cpp')
-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) {