aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristopher Lamb <christopher.lamb@gmail.com>2007-12-18 09:45:40 +0000
committerChristopher Lamb <christopher.lamb@gmail.com>2007-12-18 09:45:40 +0000
commitf311f53a0fbe6063d32ad0767e005c2727feb365 (patch)
treecb8e847a7df221f66635f479f5955ae245fda38b /lib
parent30f017ad898bd86415aab001b45b5ac1373fa882 (diff)
Fix typos.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45159 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-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 b059c49f0a..acda89bfe0 100644
--- a/lib/Transforms/Scalar/InstructionCombining.cpp
+++ b/lib/Transforms/Scalar/InstructionCombining.cpp
@@ -2135,7 +2135,7 @@ Instruction *InstCombiner::visitAdd(BinaryOperator &I) {
// add (select (icmp A m) X Y) A
//
// add (select X 0 (sub n A)) A ->
- // select X A n ->
+ // select X A n
{
SelectInst *SI = dyn_cast<SelectInst>(LHS);
Value *Other = RHS;