diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-05-20 07:26:45 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-05-20 07:26:45 +0000 |
commit | 6e7b322d36fc9e571cd54cb4b9c6043346a97e3a (patch) | |
tree | d96f223dcc6107a1af4d601185b290d542fd41c7 /lib | |
parent | 3d28b1b35be22f445f38d539fa74857b21c1570d (diff) |
Fix typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@51303 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Transforms/Scalar/JumpThreading.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Scalar/JumpThreading.cpp b/lib/Transforms/Scalar/JumpThreading.cpp index d79a6cea3b..25f41d38a4 100644 --- a/lib/Transforms/Scalar/JumpThreading.cpp +++ b/lib/Transforms/Scalar/JumpThreading.cpp @@ -158,7 +158,7 @@ static unsigned getJumpThreadDuplicationCost(const BasicBlock *BB) { /// ThreadBlock - If there are any predecessors whose control can be threaded /// through to a successor, transform them now. bool JumpThreading::ThreadBlock(BasicBlock *BB) { - // See if this block ends with a branch of switch. If so, see if the + // See if this block ends with a branch or switch. If so, see if the // condition is a phi node. If so, and if an entry of the phi node is a // constant, we can thread the block. Value *Condition; |