aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Transforms/Utils/LoopSimplify.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2010-03-10 02:18:48 +0000
committerDan Gohman <gohman@apple.com>2010-03-10 02:18:48 +0000
commit2d0a91cd6c3df32014d547255d6a615bd1bc84fb (patch)
tree6a9009e7f18be8aecbbef6d78d243b44a6c4bc36 /lib/Transforms/Utils/LoopSimplify.cpp
parent2938a00f29dae82e47bf4939bcc8d0ff734ef582 (diff)
downloadexternal_llvm-2d0a91cd6c3df32014d547255d6a615bd1bc84fb.zip
external_llvm-2d0a91cd6c3df32014d547255d6a615bd1bc84fb.tar.gz
external_llvm-2d0a91cd6c3df32014d547255d6a615bd1bc84fb.tar.bz2
Fix a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@98122 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r--lib/Transforms/Utils/LoopSimplify.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/Utils/LoopSimplify.cpp b/lib/Transforms/Utils/LoopSimplify.cpp
index 924b744..584ec14 100644
--- a/lib/Transforms/Utils/LoopSimplify.cpp
+++ b/lib/Transforms/Utils/LoopSimplify.cpp
@@ -132,7 +132,7 @@ bool LoopSimplify::ProcessLoop(Loop *L, LPPassManager &LPM) {
bool Changed = false;
ReprocessLoop:
- // Check to see that no blocks (other than the header) in this loop that has
+ // Check to see that no blocks (other than the header) in this loop have
// predecessors that are not in the loop. This is not valid for natural
// loops, but can occur if the blocks are unreachable. Since they are
// unreachable we can just shamelessly delete those CFG edges!