aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/SimplifyCFG.cpp
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2009-03-19 17:23:29 +0000
committerDale Johannesen <dalej@apple.com>2009-03-19 17:23:29 +0000
commitc42367edd4c056f06843796beb89cbae92b5e3e0 (patch)
treef07b65643e2461d2f2dd6b646360cf4bb8845eee /lib/Transforms/Utils/SimplifyCFG.cpp
parentf3da1d9fd18dcf5401ce2ea78452c7410c0acab5 (diff)
downloadexternal_llvm-c42367edd4c056f06843796beb89cbae92b5e3e0.zip
external_llvm-c42367edd4c056f06843796beb89cbae92b5e3e0.tar.gz
external_llvm-c42367edd4c056f06843796beb89cbae92b5e3e0.tar.bz2
Fix comment typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@67307 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/SimplifyCFG.cpp')
-rw-r--r--lib/Transforms/Utils/SimplifyCFG.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/SimplifyCFG.cpp b/lib/Transforms/Utils/SimplifyCFG.cpp
index 925e3e9..1cbf91f 100644
--- a/lib/Transforms/Utils/SimplifyCFG.cpp
+++ b/lib/Transforms/Utils/SimplifyCFG.cpp
@@ -85,7 +85,7 @@ static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
DOUT << "Looking to fold " << BB->getNameStart() << " into "
<< Succ->getNameStart() << "\n";
- // Shortcut, if there is only a single predecessor is must be BB and merging
+ // Shortcut, if there is only a single predecessor it must be BB and merging
// is always safe
if (Succ->getSinglePredecessor()) return true;