diff options
author | Dan Gohman <gohman@apple.com> | 2009-12-18 00:28:43 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2009-12-18 00:28:43 +0000 |
commit | 1af1954852956f9a1882caf4a1e94f008960bf87 (patch) | |
tree | f8e93863a519a5cbd02cf289db402a35991aafb1 /llvm/lib/Transforms/Utils/LoopSimplify.cpp | |
parent | eabfd8b1557deaf48fe3a765277b3f7e68f69558 (diff) | |
download | llvm-1af1954852956f9a1882caf4a1e94f008960bf87.zip llvm-1af1954852956f9a1882caf4a1e94f008960bf87.tar.gz llvm-1af1954852956f9a1882caf4a1e94f008960bf87.tar.bz2 |
Update a comment.
llvm-svn: 91645
Diffstat (limited to 'llvm/lib/Transforms/Utils/LoopSimplify.cpp')
-rw-r--r-- | llvm/lib/Transforms/Utils/LoopSimplify.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Transforms/Utils/LoopSimplify.cpp b/llvm/lib/Transforms/Utils/LoopSimplify.cpp index 690972d..051089b 100644 --- a/llvm/lib/Transforms/Utils/LoopSimplify.cpp +++ b/llvm/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) { |