summaryrefslogtreecommitdiff
path: root/lib/Transforms/Utils/LoopSimplify.cpp
diff options
context:
space:
mode:
authorDan Gohman <gohman@apple.com>2009-12-18 00:28:43 +0000
committerDan Gohman <gohman@apple.com>2009-12-18 00:28:43 +0000
commit34d2b90d09226ebf6189775acfd2801e127b10ec (patch)
treee2c32475711ec36a62f219a8a6a7e40ec99e457e /lib/Transforms/Utils/LoopSimplify.cpp
parentc226fe3c3e4382d3102c444f72cdca9ec35b1e51 (diff)
downloadllvm-34d2b90d09226ebf6189775acfd2801e127b10ec.tar.gz
llvm-34d2b90d09226ebf6189775acfd2801e127b10ec.tar.bz2
llvm-34d2b90d09226ebf6189775acfd2801e127b10ec.tar.xz
Update a comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@91645 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 690972dc55..051089bc41 100644
--- a/lib/Transforms/Utils/LoopSimplify.cpp
+++ b/lib/Transforms/Utils/LoopSimplify.cpp
@@ -109,7 +109,7 @@ X("loopsimplify", "Canonicalize natural loops", true);
const PassInfo *const llvm::LoopSimplifyID = &X;
Pass *llvm::createLoopSimplifyPass() { return new LoopSimplify(); }
-/// runOnFunction - Run down all loops in the CFG (recursively, but we could do
+/// runOnLoop - Run down all loops in the CFG (recursively, but we could do
/// it in any convenient order) inserting preheaders...
///
bool LoopSimplify::runOnLoop(Loop *l, LPPassManager &LPM) {