diff options
author | Dan Gohman <gohman@apple.com> | 2010-03-30 20:04:57 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2010-03-30 20:04:57 +0000 |
commit | 4bb31bfaa3ed2495dd99304316344dbe54f1d756 (patch) | |
tree | 2391b28590f083286c32aff4e3711d630be4c69d /lib/Transforms/Utils/SimplifyCFG.cpp | |
parent | 1a5d2a8fa116c123bec6b0197c2d894e91f1f94b (diff) |
Fix a grammaro.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r-- | lib/Transforms/Utils/SimplifyCFG.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp index bdf366a21c..9f2209dfcf 100644 --- a/lib/Transforms/Utils/SimplifyCFG.cpp +++ b/lib/Transforms/Utils/SimplifyCFG.cpp @@ -224,7 +224,7 @@ static bool DominatesMergePoint(Value *V, BasicBlock *BB, if (BI->isUnconditional() && BI->getSuccessor(0) == BB) { if (!AggressiveInsts) return false; // Okay, it looks like the instruction IS in the "condition". Check to - // see if its a cheap instruction to unconditionally compute, and if it + // see if it's a cheap instruction to unconditionally compute, and if it // only uses stuff defined outside of the condition. If so, hoist it out. if (!I->isSafeToSpeculativelyExecute()) return false; |