aboutsummaryrefslogtreecommitdiffstats
path: root/lib/CodeGen/CodePlacementOpt.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-02-10 20:04:19 +0000
committerDan Gohman <gohman@apple.com>2010-02-10 20:04:19 +0000
commitdc9a0664253bca3cd3dbfaa16d4972a63a7d89eb (patch)
tree2511ac70d1a0f35492b3664aaf04a0be0e52000c /lib/CodeGen/CodePlacementOpt.cpp
parent72e1f91ffea2d3d5db06b5569cb8733d79eba9ef (diff)
downloadexternal_llvm-dc9a0664253bca3cd3dbfaa16d4972a63a7d89eb.zip
external_llvm-dc9a0664253bca3cd3dbfaa16d4972a63a7d89eb.tar.gz
external_llvm-dc9a0664253bca3cd3dbfaa16d4972a63a7d89eb.tar.bz2
Fix several comments which had previously been "the the" where a
different word was intended. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@95795 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/CodePlacementOpt.cpp')
-rw-r--r--lib/CodeGen/CodePlacementOpt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/CodePlacementOpt.cpp b/lib/CodeGen/CodePlacementOpt.cpp
index 05a57d4..a13a310 100644
--- a/lib/CodeGen/CodePlacementOpt.cpp
+++ b/lib/CodeGen/CodePlacementOpt.cpp
@@ -115,7 +115,7 @@ bool CodePlacementOpt::HasAnalyzableTerminator(MachineBasicBlock *MBB) {
// Ask the target's AnalyzeBranch if it can handle this block.
MachineBasicBlock *TBB = 0, *FBB = 0;
SmallVector<MachineOperand, 4> Cond;
- // Make the terminator is understood.
+ // Make sure the terminator is understood.
if (TII->AnalyzeBranch(*MBB, TBB, FBB, Cond))
return false;
// Make sure we have the option of reversing the condition.