aboutsummaryrefslogtreecommitdiff
path: root/llvm/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
commit97c5902e788c16db45da6f702ebde2cc54cfad87 (patch)
tree8384074d71acdd0faff5937254a0e60f474de249 /llvm/lib/CodeGen/CodePlacementOpt.cpp
parentbb7930c17e9831c3499bbbf1703cca408f0b83b7 (diff)
downloadllvm-97c5902e788c16db45da6f702ebde2cc54cfad87.zip
llvm-97c5902e788c16db45da6f702ebde2cc54cfad87.tar.gz
llvm-97c5902e788c16db45da6f702ebde2cc54cfad87.tar.bz2
Fix several comments which had previously been "the the" where a
different word was intended. llvm-svn: 95795
Diffstat (limited to 'llvm/lib/CodeGen/CodePlacementOpt.cpp')
-rw-r--r--llvm/lib/CodeGen/CodePlacementOpt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/CodeGen/CodePlacementOpt.cpp b/llvm/lib/CodeGen/CodePlacementOpt.cpp
index 05a57d4..a13a310 100644
--- a/llvm/lib/CodeGen/CodePlacementOpt.cpp
+++ b/llvm/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.